Git 准系统仓库
有人可以解释一下准系统仓库是什么吗?我如何在我的保管箱中设置一个来存储?还有其他问题提到要执行此操作,但我似乎无法清楚地解释什么是准系统存储库、在哪里设置它(除了在您的保管箱中允许备份的建议 - 这是一个好主意以及我为什么要问)以及如何将其集成到我的工作流程中。
谢谢!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能正在考虑“裸”存储库,这是一个没有附加工作目录的 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
orgit 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.