You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git fetch origin
git reset --hard origin/master
```
If you want to save your current branch's state before doing this (just in case), you can do:
```
git commit -a -m "Saving my work, just in case"
git branch my-saved-work
```