How to merge branch to master?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to merge your branch to master on remote, follow the below steps:
git push origin br-1
.git checkout master
.git pull origin master
.git merge br-1
. This may give you conflicts which need to be resolved and changes committed before moving further.git push origin master
.