原始文件在哪里?

发布于 2024-08-23 16:52:12 字数 80 浏览 2 评论 0原文

我创建了一个存储库,查看了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北恋 2024-08-30 16:52:12

哪些文件?

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.

执着的年纪 2024-08-30 16:52:12

您还可以克隆存储库以查看是否获得了预期的结果。

You can also clone the repository to see that you get what you expect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文