git tag -d [tagname]
git push origin :refs/tags/[tagname]git push -f origin [hash of the commit you want to move to]:[branch]
git reset [hash of the commit you want to move to]git commit --amendgit rebase -i HEAD~10 # 10 = the last 10 commitsChange to reword and save each
git reset --hard HEAD^git reset --hard [hash]git stash save --keep-index --include-untracked
# git stash drop