git merge branch to master command line code example

Example 1: how to merge git branch to master

git checkout master
git pull origin master
git merge test
git push origin master

Example 2: git merge branch to master command line

git checkout master			# master is checked out
git pull					# update local
git merge new-feature		# merge branch new-feature into master
git push					# changes on remote. Then checkout a feature branch

Example 3: merge branch to master

$ git checkout master
$ git branch new-branch
$ git checkout new-branch

# ...develop some code...

$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
$ git merge new-branch

Example 4: merging branch to master

First we have to come in the branch
which we want to merge the codes in. 
It means generally we should come
into master branch in this case.
- git checkout master ==>
                now you are in master branch
- git pull origin master ==> 
              We are pulling recent code from master branch 
                                                    on GitHub
- git merge develop -m "your message here" ==> 
            to merge a develop branch into master branch 
- git add . 
- git commit -m "final commit"
- git push origin master
- now when other team members pull master
they will see what you sent
*** git rebase LoginFeatureBranch ==>
                This will merge Login with Master but 
closes the LoginFeatureBranch for good (completely).

Example 5: merge branch into master

# ...develop some code...

$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
Switched to branch 'master'
$ git merge new-branch

Example 6: how to merge a branch to master in git

# Check out development branch
git checkout development

# Make changes, commit...
...

# Optional: Push development changes to the remote
git push origin development

# Check out production branch
git checkout production

# Merge the changes from the development branch
git merge development

# Push the changes to the remote
git push origin production

# Check out the development branch again
git checkout development