我可以创建自己的远程服务器而不是使用Git Hub吗?
即我可以在局域网上创建一台远程服务器,其中有3台计算机在网络上共享一个驱动器,以便使用Gitbash进行协同工作吗?
答案 0 :(得分:8)
有几种方法可以做到这一点
mkdir -p RepoName && git init RepoName --bare
git daemon --base-path=$PWD/RepoName
git remote add origin git://server.url.or.ip/RepoName
git clone git://server.url.or.ip/RepoName
答案 1 :(得分:2)
是的,你这样做。实际上你需要一个SSH服务,git完全适用于SSH。由于您使用的是Windows,请参阅Setup a Git server with msysgit on Windows
答案 2 :(得分:2)
您可以设置远程存储库,并通过它支持的任何protocols访问它。 AAA将由运输处理。