Hacker News new | ask | show | jobs
by Brakenshire 4121 days ago
Seems like an excellent idea, being able to type

gg c message

rather than:

git add -A

git commit -m "message"

when you're doing that 50 times a day, is particularly nice.

2 comments

git add -A && git commit -m "message" is equivalent to git commit -a -m "message"
which reduces to `git commit -am "message"`

with alias, i have `gc -am "message"`

Thanks, I didn't know that.
If your shell has completions the difference is usually not very noticeable.