Hacker News new | ask | show | jobs
by john-tells-all 478 days ago
haha although I use a bunch of Git commands and am comfy with the internals, I use a similar workflow most of the time.

"commit all files and add a comment" = `cam`, "also push" = `camp`

> cam "fixed bug"

alias cam='git commit -am'

function camp() { git commit -am "$1" git push }