What commands would you use to force an overwrite of your local files with the master branch?
⠀
git pull -u origin master git reset --hard master
git fetch --all git reset --hard origin/master
git pull --all git reset --hard origin/master
git pull origin master git reset --hard origin/myCurrentBranch