sag@lemm.ee to Programmer Humor@programming.dev · 2 years agoMy Git Knowledgelemm.eeimagemessage-square74fedilinkarrow-up1901arrow-down122
arrow-up1879arrow-down1imageMy Git Knowledgelemm.eesag@lemm.ee to Programmer Humor@programming.dev · 2 years agomessage-square74fedilink
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up3·edit-22 years agoI use this in my bash profile in case anyone else finds it helpful. Usage is: gao fixing a typo function gao() { git add . git commit -a -m "$*" git push origin `git rev-parse --abbrev-ref HEAD` }
I use this in my bash profile in case anyone else finds it helpful. Usage is:
gao fixing a typo
function gao() { git add . git commit -a -m "$*" git push origin `git rev-parse --abbrev-ref HEAD` }