What is your shortcut for 'Git commit'?
Wondering if there are any clever programs that abstract git commit flow
Mine is "git commit", as I don't like to customize the hell out of my multiple and often changing work computers, for a touch typist the extra letters are maybe a single second of typing ..
My PowerShell profile has a function, `gc`, that stages, commits, and pushes all changes. (It runs `git add -A`, `git commit -m` with the specified message, and then `git push`.)
Usage:
`gc 'Change navbar size'`
For context, I am using `c() { git commit -m '$1' }`, which is helpful. But I wish there was something smarter.
mine is "gcm ", just modify the oh-my-zsh git alias plugin. it's fast and good to memorize.
What is wrong with vanilla?
alias gc='git commit -v'
alias gc!='git commit -v --amend'