Git
Last updated
Last updated
- this is probably
the best git tool to quickly get work done if you are already married to the
Emacs ecosystem.
Undoing a git add
before commit -
.
Removing untracked files -
git clean -n
- to check which files will be deleted.
git clean -f
- to delete untracked files.
Rebase remote master - ,
This can be done in one step - git pull --rebase origin master
Undoing a git rebase - .