In this tutorial, How to use Git merge development branch to master branch?
The current development branch is develop
$ git branch
The screen output terminal:
* develop
master
For example, You want to merge branch develop to branch master as below
$ git checkout master
$ git pull origin master
$ git merge develop
$ git push origin master
Conclusion
Thought the article, you can use the “Git merge development branch to