git reset --soft HEAD~7
git add --all
git commit -m "single desscriptive message"
git push --force
~7 is how many commits to go back to
git reset --soft HEAD~7
git add --all
git commit -m "single desscriptive message"
git push --force
~7 is how many commits to go back to
git remote add upstream https://github.com/original-repo/goes-here.git
git fetch upstream