Advertisement

Your Ad could be here. I want to connect my readers to relavant ads. If you have a product targeted at developers, let's talk. [email protected]

  • rebase
  • git commit --amend

Unstage learning-python-debugger


git reset -- <file>

rage unstage to wipte out history of staged commit


git reset --hard <file>

Undo file

  • rage quit
  • git reset HEAD~n
    • removes modifications
    • keeps hitsory of changes and undoes them
  • git checkout HEAD~n --
    • keeps modifications

    • removes history

    • --SOFT

    • --HARD

    • --Mixed

undo n commits back

locally before push


git reset HEAD~n

after push


git revert HEAD~n

update .gitignore

after push


git rm -r --cached .
git commit -am "Updated .gitignore"