为Git over SSH设置新的远程存储库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为Git over SSH设置新的远程存储库相关的知识,希望对你有一定的参考价值。

  1. Server Side
  2.  
  3. $ ssh server.com
  4. Last login: Thu Oct 1 10:32:15 2009 from 0.0.0.0
  5. $ mkdir /opt/git/project.git
  6. $ cd /opt/git/project.git
  7. $ git --bare init
  8. Initialized empty Git repository in /opt/git/project.git
  9. $ exit
  10. logout
  11. Connection to server.com closed.
  12.  
  13. Client Side - Project needs to be an existing local repository.
  14. See below how to create a local repository.
  15.  
  16. $ cd ~/git/project
  17. $ cd project
  18. $ git remote add origin ssh://server.com/opt/git/project.git
  19. $ git push origin master
  20.  
  21. Creating a local repository:
  22.  
  23. $ cd ~/git
  24. $ mkdir project
  25. $ cd project
  26. $ git init
  27. Initialized empty Git repository in /Users/user/git/project/.git/

以上是关于为Git over SSH设置新的远程存储库的主要内容,如果未能解决你的问题,请参考以下文章

如何让 git 默认为 ssh 而不是 https 对于新的存储库

Git以错误用户身份推送到远程GitHub存储库

设置远程git存储库。

在远程 OS X 服务器上创建一个新的 git 存储库

ssh:无法解析主机名 git:名称或服务未知 致命:无法从远程存储库读取

git将上游设置为存储库中的远程文件夹