1.跟踪分支与远程跟踪分支
跟踪分支tracking branch(master用户可写)
远程跟踪分支 remote tracking branch(origin/master用户只读)
git clone origin/master
git fetch
git merge
git pull
git add git commit ->master
git push ->origin/master->master
2.远程操作中的remote配置
remote配置
url 仓库地址
fetch 如何配置远程分支
push
refspec fetch的格式,指定引用定义的方式
3.远程操作中的branch配置