set of aliases to make git actions more intuitive
I recommend that you clone this repo into your home dir, then add this to your user's .gitconfig
[include]
path = ./gitin2it/gitin2it
Git aliases that
- are intuitively, idiomatically named *
- replace commands that have switches...
-
git ignored
vs.git ls-files --others --exclude-standard --ignored
show ignored files in repository
-
- ... or syntax
git back
vs.git checkout HEAD~1
- are named after google searches or stack overflow questions
-
"How do I unstage changes that I've commited?"
git unstage
vs.git reset
-
- Implement as-of-yet-unimplemented features
git diff-stat
automatically sizesstat
output to terminal width
- Wield the power of shell commands
- abbrevations
git co
forgit checkout
ignore
command
* Who decides what is intuitive or idiomatic?
I do.