Git 准系统仓库

发布于 2024-09-19 21:52:28 字数 150 浏览 5 评论 0原文

有人可以解释一下准系统仓库是什么吗?我如何在我的保管箱中设置一个来存储?还有其他问题提到要执行此操作,但我似乎无法清楚地解释什么是准系统存储库、在哪里设置它(除了在您的保管箱中允许备份的建议 - 这是一个好主意以及我为什么要问)以及如何将其集成到我的工作流程中。

谢谢!

Can some one please explain what a barebones repo is? And how I can setup one in my dropbox to store to? There are other questions mentioning to do this, but I can't seem to get a clear explanation of a what a barebones repo is, where to set it up (except for the recommendation of in your dropbox to allow for backup - which is a good idea and why I'm asking) and how to integrate it into my workflow.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

如梦亦如幻 2024-09-26 21:53:10

您可能正在考虑“裸”存储库,这是一个没有附加工作目录的 Git 存储库。您可以使用 git --bare init 或 git clone --bare 来创建一个。

由于它没有工作目录,因此您无法使用它编辑文件,但可以向其中推入和拉出文件。

You're probably thinking of a "bare" repo, which is a Git repo without an attached working directory. You can create one using git --bare init or git clone --bare.

Since it doesn't have a working directory, you can't edit files with it, but you can push into and pull from it.

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