创建将在服务器上的 git 存储库时,我可以将其转换为裸存储库吗?

发布于 2024-08-11 18:25:21 字数 37 浏览 4 评论 0原文

我已经创建了一个存储库。我可以将其设为裸型还是应该重新开始?

I already created a repository. Can I make it a bare type or shall I start over?

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

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

发布评论

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

评论(3

倾城月光淡如水﹏ 2024-08-18 18:25:21

根据 FAQ,从非裸机转换为裸露可以通过两种方式完成。最好的一个:

$ git clone --bare -l repo repo.git
$ rm -rf repo

从头开始创建一个裸存储库:

$ mkdir repo.git
$ cd repo.git
$ git --bare init

According to the FAQ, conversion from non-bare to bare can be done in two ways. The best one:

$ git clone --bare -l repo repo.git
$ rm -rf repo

To create a bare repository from scratch:

$ mkdir repo.git
$ cd repo.git
$ git --bare init
原来分手还会想你 2024-08-18 18:25:21

只需将 .git 文件夹从工作副本中移开即可。

mv /var/git/repo/repo/.git /var/git/repos/repo.git

您可能想在该存储库中跟进

git config --bool core.bare true

,以防 git 抱怨某些事情不正确。

Just move the .git folder away from the working copy.

mv /var/git/repo/repo/.git /var/git/repos/repo.git

You might want to follow that up with a

git config --bool core.bare true

in that repository, just in case git complains about something not being right.

仙女 2024-08-18 18:25:21
git clone --bare repo

这将为您提供一个名为 repo.git 的新裸版 repo。容易,不是吗?

git clone --bare repo

This will give you a new bare version of repo named repo.git. Easy, no?

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