I have two branches namely master and development in a GitHub Repository. I am doing all my development in development branch as shown.
git branch development
git add *
git commit -m "My initial commit message"
git push -u origin development
Now I want to merge all the changes on the development branch into the master. My current approach is:
git checkout master
git merge development
git push -u origin master
Please let me know if the procedure I am following is correct.
git pull -usets the upstream tracking for the branch (or all branches if pushing more than one). Once it is set the tracking persists. There is no reason to use it continually. – David Culp Jan 5 at 6:26