EN
Git - how to merge branch to master?
1
answers
0
points
How to merge a new branch
to the master
branch using Git Bash?
1 answer
0
points
First thing you need to do is make sure you are on the branch you want to merge to, so change branch to master
using:
git checkout master
then merge new_branch
:
git merge new_branch
Safe way if you are using remote repository:
git checkout master
git pull origin master
git merge new_branch
git push origin master
0 comments
Add comment