标签: git ubuntu-12.04
将 ubuntu系统作为共享GIT存储库的步骤。我使用的是ubuntu12.04。我已经安装了git。如何更改为远程存储库
答案 0 :(得分:1)
您可以使用git init --bare repo.git在主目录中创建存储库。
git init --bare repo.git
在此之后,您可以使用git clone user@host:repo克隆此存储库(来自其他主机)。 (这只需要ssh访问您的主机。)
git clone user@host:repo