Git
- the best git tool to quickly get work done if you are already married to theEmacs ecosystem.
- Undoing a
git add
before commit - - Removing untracked files - https://koukia.ca/how-to-remove-local-untracked-files-from-the-current-git-branch-571c6ce9b6b1
git clean -n
- to check which files will be deleted.git clean -f
- to delete untracked files.
- git fetch origin # Updates origin/mastergit rebase origin/master # Rebases current branch onto origin/masterThis can be done in one step -
git pull --rebase origin master
Last modified 3yr ago