Git远程库
要关联一个远程主机,使用命令 git remote add origin <url> ;
删除远程主机,使用命令 git remote rm origin ;
git push 的一般形式是
git push <远程主机名> <本地分支名>:refs/for/<远程分支名> 或者 git push <远程主机名> <本地分支名>:refs/heads/<远程分支名>
for 和 heads 的区别就是for需要经过code review而heads不需要
关联后,使用命令 git push -u origin master 第一次推送master分支的所有内容;
使用 git remote origin set-url URL 设置关联的远程库的URL
此后,每次本地提交后,只要有必要,就可以使用命令 git push origin master 推送最新修改;
要克隆一个仓库,首先必须知道仓库的地址,然后使用 git clone 命令克隆。
Git支持多种协议,包括https
,但通过ssh
支持的原生git
协议速度最快。
-
查看远程库信息,使用 git remote -v ;
-
本地新建的分支如果不推送到远程,对其他人就是不可见的;
-
从本地推送分支,使用 git push origin branch-name ,如果推送失败,先用 git pull 抓取远程的新提交;
-
在本地创建和远程分支对应的分支,使用 git checkout -b branch-name origin/branch-name ,本地和远程分支的名称最好一致;
-
建立本地分支和远程分支的关联,使用 git branch --set-upstream branch-name origin/branch-name ;
-
从远程抓取分支,使用 git pull ,如果有冲突,要先处理冲突。
使用 git branch -r 查看远程分支
使用 git branch -avv 查看本地与远程分支的关联