Git: Files pushed from local repo not showing up in remote git repo

泄露秘密 提交于 2019-12-01 01:05:09

They are being stored as Git objects. Bare repositories do not have a working directory, so there will never be any files checked out on the server. The data is stored in Git's own content-addressable filesystem under the objects directory, keyed by the SHA1 hash of the objects' contents. Objects include blobs (file data), trees (lists of files and trees), and commits (metadata such as author name, timestamp, commit message, parent commit object IDs, and the tree object ID that corresponds to the commit).

(The objects may also be combined into packs, which will live under the objects/pack directory.)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!