linux2019. 1. 25. 11:06

how to git merge branch A to B


#git commit  

#git push         // update A branch

#git branch 

#git pull 

#git checkout B// move to B branch

#git pull

#git merge A    // merge A with B 

#git push         // update B branch

#git checkout A // move to A

Posted by easy16