设置远程git存储库。

Posted

tags:

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

How to setup a remote git repository via SSH.
  1. # SSHing into the remote machine
  2. [email protected]$ mkdir ~/git
  3. [email protected]$ mkdir ~/git/project-name.git
  4. [email protected]$ cd ~/git/project-name.git
  5. uname@remoteserver/git/project-name.git$ git �-bare init
  6. uname@remoteserver/git/project-name.git$ chmod -R g=u .
  7. uname@remoteserver/git/project-name.git$ find . -type d | xargs chmod g+s
  8. uname@localhost/localprojectrepo$ git init
  9.  
  10. # on the local machine
  11. uname@localhost/localprojectrepo$ git init
  12. uname@localhost/localprojectrepo$ touch samplefile.txt
  13. uname@localhost/localprojectrepo$ git add .
  14. uname@localhost/localprojectrepo$ git commit -m �First commit�
  15. uname@localhost/localprojectrepo$ git remote add origin uname@remoteserver:<pathto>/git/project-name.git
  16. uname@localhost/localprojectrepo$ git push origin master

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

设置远程git存储库。

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

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

单个目录指向多个git存储库

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段