如何在 atlassian-stash 中创建裸存储库
How can I create bare repositories in atlassion-stash
我们在命令行上使用以下命令创建裸存储库。
git init --bare <path>
如何在 atlassion-stash/(bitbucket 服务器)
中创建裸存储库
我怀疑像 Atlassian Stash 这样的 git "server" 管理工具本身不会创建裸存储库——在服务器上拥有一个检出的工作副本毫无意义.
也许您混淆了 "repository without a single commit" 和 "bare"?
Bare 存储库是没有 工作副本 签出的存储库。
我们在命令行上使用以下命令创建裸存储库。
git init --bare <path>
如何在 atlassion-stash/(bitbucket 服务器)
中创建裸存储库我怀疑像 Atlassian Stash 这样的 git "server" 管理工具本身不会创建裸存储库——在服务器上拥有一个检出的工作副本毫无意义.
也许您混淆了 "repository without a single commit" 和 "bare"?
Bare 存储库是没有 工作副本 签出的存储库。