原始文件在哪里?
我创建了一个存储库,查看了 Git 创建的内容,但在 .git 树下的任何位置都找不到文件。那么,我如何知道我的文件是否安全地存储在 Git 中?
I’ve created a repository, looked at what Git created, and can’t find the files anywhere under the .git tree. So, how do I know my files are safely stored in Git?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哪些文件?
Git 不存储文件的重复项。 Git 存储库的
.git
目录的内容本质上是一个包含 Git 跟踪的所有内容以及提交、标签等的数据库。如果您的存储库是非裸存储库,它将有一个与其关联的工作树。工作树是 Git 跟踪的文件的最新表示。
Which files?
Git doesn't store duplicates of the files. The contents of a Git repository's
.git
directory is essentially a database of all the content tracked by Git, along with commits, tags, and so forth.If your repository is a non-bare repository, it will have a working tree associated with it. The working tree is the most current representation of the files tracked by Git.
您还可以克隆存储库以查看是否获得了预期的结果。
You can also clone the repository to see that you get what you expect.