Last active
December 22, 2015 10:19
-
-
Save aldibier/6458189 to your computer and use it in GitHub Desktop.
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
=== Generate SSH Keys === | |
https://help.github.com/articles/generating-ssh-keys | |
=== Force git to overwrite local files on pull === | |
git fetch --all | |
git reset --hard origin/master | |
git fetch downloads the latest from remote without trying to merge or rebase anything. Then the git reset resets the master branch to what you just fetched. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment