xxxxxxxxxx
git reset <previous label or sha1>
git commit -am "commit message"
git push -f <remote-name> <branch-name> // git push -f origin master
xxxxxxxxxx
To reset a brancj to some good commit:
In the server, move the cursor back to the last known good commit:
git push -f origin <last_known_good_commit>:<branch_name>
Locally, do the same:
git reset --hard <last_known_good_commit>
# ^^^^^^
# optional
xxxxxxxxxx
git reset <previous label or sha1>
git commit -am "blabla"
git push -f <remote-name> <branch-name>
xxxxxxxxxx
git reset <previous label or sha1>
git push -f <remote-name> <branch-name> // git push -f origin <branch-name>
xxxxxxxxxx
#Reset author for the current repo:
git config --local user.name "Alex Smith"
git config --local user.email alex@email.com
#Now reset the author of your commit without edit required:
git commit --amend --reset-author --no-edit
#Force push your changes without overwriting anyone else's commits:
git push --force-with-lease