merge in master code example
Example 1: merge master with main
git checkout master
git pull origin master
git merge test
git push origin master
Example 2: git merge master into branch
$ git checkout master
$ git pull origin/master
$ git merge feature
$ git push origin/master
Example 3: merge master into local branch
git checkout feature1
git merge master
Example 4: git merge to master
How to merge a branch?
- push all the changes in your current branch
- until it shows ( Everything up-to-date )
- goto your new branch where you wana merge the changes
- git checkout your_branch_name
- git merge development (
Example 5: merge master into feature branch
git checkout feature1
git merge master