git init --bare 在 git 1.5.4.3 上

发布于 2024-12-02 05:16:28 字数 218 浏览 1 评论 0原文

我们的服务器上有 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 技术交流群。

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

发布评论

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

评论(1

甜味拾荒者 2024-12-09 05:16:28

使用这样一个早期版本的 git,您仍然可以使用以下

git --bare init

命令创建裸存储库: ... 而不是更常见的 git init --bare 。


出于兴趣,我从向 git init 引入 --bare 选项的提交消息中发现了这一点

  • : com/git/git/commit/74d3b23fe3771c769ccd5c97f6a46682b4061577“ rel="noreferrer">https://github.com/git/git/commit/74d3b23fe3771c769ccd5c97f6a46682b4061577

该提交包含在 git 版本 v1.5.6 及更高版本中。

With such an early version of git, you can still create a bare repository with:

git --bare init

... 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 to git init:

That commit is contained in git version v1.5.6 and later.

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