git 远程库(github)使用以及远程协作
前文所述工作区、暂存区和本地库均属位于个人电脑上,其他人无法共享。若要让别人获取 自己的代码进行修改,需要将其上传至github(或者gitlab)。
命令详解
1. 为远程库创建别名
$ git remote add git-demo https://github.com/shj-12345/git-demo.git
git-demo:给库取的别名,主要是为了后续使用方便
https://github.com/shj-12345/git-demo.git :远程库地址
2. 打印现有别名
git remote -v
3.提交代码
$ git push git-demo master
git-demo : 远程库地址
master :要提交的分支
4.克隆代码
$ git clone https://github.com/shj-12345/git-demo.git
下载某网址指向的代码库,克隆的内容有:①代码;②初始化 .git文件;③创建好的网址别名
5. 对齐代码
$ git pull git-demo master
将本地的master分支向远端的master对齐
6. 邀请其他人加入自己的代码库