|
|
|
|
|
by isaac_is_goat
3466 days ago
|
|
Hg is easier to use for mainly 2 reasons: 1. The UI is more consistent ie. the "update" command only does 1 thing updates your working directory to a specified state. 2. It doesn't have a pre-commit staging "index" like Git (or it at least doesn't expose it to the user. So workflow is a bit for straightforward ie. you don't need to constantly "add" files before you commit, it automatically does it for you. |
|
Plus, while the UX of git is not intuitive, especially from SVN, if you want to bypass staging and just use it like SVN, you can "git commit -a". Like svn, if you have new, untracked files, you can "git add -A; git commit". This is also trivial to alias.