Try this:
git fetch --all
git reset --hard origin/master
Explanation:
git fetch downloads the latest from remote without trying to merge or rebase anything.
Please let me know if you have any questions!
Try this:
git fetch --all
git reset --hard origin/master
Explanation:
git fetch downloads the latest from remote without trying to merge or rebase anything.
Please let me know if you have any questions!