一、git拉取远程已有分支到本地
1.mkdir aaa 2.cd aaa 3.git init 4.git remote add origin git@github.com:happychen666/gitTest.git ? ? #与origin master建立连接(为远程仓库链接)? ? ? ? ? ? ? ? ? ? ? ? ? 5.git fetch origin dev(dev为远程仓库的分支名) ?#把远程分支拉到本地 6.git fetch origin test02 7.git checkout -b dev(本地分支名称) origin/dev(远程分支名称) ?#在本地创建分支dev并切换到该分支 8.git pull origin dev(远程分支名称) ? #把远程分支上的内容都拉取到本地
二、推送本地分支local_branch到远程分支 remote_branch
1..远程已有remote_branch分支并且已经关联本地分支local_branch且本地已经切换到local_branch
git add .
git commit -m "test02分支提交代码"
git push
2.远程已有remote_branch分支但未关联本地分支local_branch且本地已经切换到local_branch
git push -u origin/remote_branch
3.远程没有remote_branch分支并且本地已经切换到local_branch
git push origin local_branch:remote_branch
|