1、首先切换到分支;
git checkout [ your branch ]
2、使用 git pull 把分支代码pull下来;
git pull
3、切换到主分支 (例如:主分支为master)
git checkout master
4、把分支的代码合并到主分支;
git merge [ your branch ]
5、git push
git push
推上去以后,自己分支的代码就合并到主分支上了。
同样,主分支的代码合并到自己分支
1、首先切换到主分支(例如:主分支为master)
git checkout master
2、使用git pull 把主分支代码pull下来
git pull
3、切换到自己的分支
git checkout [ your branch ]
4、把主分支的代码merge到自己的分支
git merge master
5、git push
git push
现在 自己分支的代码就和主分支的代码一样了