Git and Mercurial equivalents
04 Mar 2015This is a list I will add to as time goes by:
Git | Mercurial | Explanation | </tr>
---|---|---|
git clean -fd |
hg purge |
Deletes all newly added untracked file and directories |
git add :/ git ls-files --deleted | xargs git rm |
hg addremove |
Adds all untracked files and removes all missing files |