Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用这个命令::
git clone --bare path/in/local ssh://path/in/server
但是这个命令是在我的本地系统中创建一个名为ssh://path/in/server的新 git 文件夹,然后在其中克隆本地 git 存储库。
所以,我需要知道是否有办法专门使用git clone命令来完成它。
git clone只能创建本地存储库。
git clone
如果要在其他地方创建存储库,则需要在远程计算机上创建一个空存储库(为此您通常需要 shell 访问权限或某种管理界面),然后将其作为远程存储库添加到本地存储库并推送给它。