Safest Way to Merge A Git Branch Into Master

git merge branch

In this article I am going to explain you about the safest way to merge a git branch(stage branch) into master branch.

Git Merge :-

((git merge branch) Never forget to take a pull from your master branch after pushing your all new changes to your
current git branch.

If your current branch(stage branch) is up to date and now you want to merge your current branch (stage branch)
with master branch then follow below process.
Explore phpmypassion for more updates and Follow us on facebook progmypassion/

first checkout to master branch then merge with below command

git pull origin[git pull origin master]
-> git merge[git merge stage]
-> git push origin[git push origin master]
-> checkout your[git checkout stage]

you done the all steps.

Related posts