创建将在服务器上的 git 存储库时,我可以将其转换为裸存储库吗?
我已经创建了一个存储库。我可以将其设为裸型还是应该重新开始?
I already created a repository. Can I make it a bare type or shall I start over?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 FAQ,从非裸机转换为裸露可以通过两种方式完成。最好的一个:
从头开始创建一个裸存储库:
According to the FAQ, conversion from non-bare to bare can be done in two ways. The best one:
To create a bare repository from scratch:
只需将
.git
文件夹从工作副本中移开即可。您可能想在该存储库中跟进
,以防 git 抱怨某些事情不正确。
Just move the
.git
folder away from the working copy.You might want to follow that up with a
in that repository, just in case
git
complains about something not being right.这将为您提供一个名为
repo.git
的新裸版repo
。容易,不是吗?This will give you a new bare version of
repo
namedrepo.git
. Easy, no?