设置远程git存储库。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置远程git存储库。相关的知识,希望对你有一定的参考价值。
How to setup a remote git repository via SSH.
# SSHing into the remote machine uname@remoteserver/git/project-name.git$ git �-bare init uname@remoteserver/git/project-name.git$ chmod -R g=u . uname@remoteserver/git/project-name.git$ find . -type d | xargs chmod g+s uname@localhost/localprojectrepo$ git init # on the local machine uname@localhost/localprojectrepo$ git init uname@localhost/localprojectrepo$ touch samplefile.txt uname@localhost/localprojectrepo$ git add . uname@localhost/localprojectrepo$ git commit -m �First commit� uname@localhost/localprojectrepo$ git remote add origin uname@remoteserver:<pathto>/git/project-name.git uname@localhost/localprojectrepo$ git push origin master
以上是关于设置远程git存储库。的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段