Git: How to reset Develop branch to be in sync with Master branch?
Feb 15, 2017 - by kurinchilamp / / Post Comment
First checkout Develop branch
$ git checkout dev
Then, reset it to Master branch
$ git reset --hard master
Make sure to push the changes by force to make origin/dev to be the same as origin/master
$ git push --force origin develop
Continue Reading