This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --local --add gc.auto 0 | |
git checkout master | |
git pull | |
git checkout your_branch | |
git reset --soft commit_hash_before_your_changes //(can be found by doing git log) | |
git stash | |
git merge master --ff | |
git stash apply | |
git commit | |
git push -f origin your_branch |