Merging develop branch into master

Summary: you need to switch to your develop branch, pull the code from the remote repo, then merge it into master (locally) and push it back to remote repo (into master branch)
git checkout develop
git pull origin develop
git checkout master
git merge develop
git push origin master

Comments

Popular posts from this blog

How can I debug PHP cURL sessions?

Free icons

how to create template file in php. why it is usefull