git init --bare 在 git 1.5.4.3 上
我们的服务器上有 git 1.5.4.3(2008 年 2 月的版本)。看起来,当时没有 --bare
选项。
那么我怎样才能创建一个裸存储库呢?
在本地创建它并将其 scp 到服务器将是一种选择,但需要花费太多精力。 或者是否可以使用本地 git 命令创建一个新的远程存储库?
We have got git 1.5.4.3 (Version from Feb'08) on our server. As it seems, there was no option --bare
back then.
How can I create a bare repository then?
Creating it locally and scp'ing it to the server would be an option, but way too much effort.
Or is it possible with a local git command to create a new remote repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用这样一个早期版本的 git,您仍然可以使用以下
命令创建裸存储库: ... 而不是更常见的 git init --bare 。
出于兴趣,我从向
git init
引入--bare
选项的提交消息中发现了这一点该提交包含在 git 版本 v1.5.6 及更高版本中。
With such an early version of git, you can still create a bare repository with:
... rather than the more usual
git init --bare
.Out of interest, I found this out from the message for the commit that introduced the
--bare
option togit init
:That commit is contained in git version v1.5.6 and later.