提交代码
git push origin master (全程分支对应的origin 和名字master,本地分支可以忽略(如果本地就只有一个分支的话,否则要建立关联) )
关联远程分支(本地develop分支与远程关联):
git branch –set-upstream-to origin/develop develop
拉取远程代码
git pull origin master
注意
有的时候重新命名的远程分支,例如
git remote add github git@github.com:xxxx/xxxx.git
则对应的是 git pull github master