sag@lemm.ee to Programmer Humor@programming.dev · 2 years agoMy Git Knowledgelemm.eeimagemessage-square175linkfedilinkarrow-up11.13Karrow-down125
arrow-up11.1Karrow-down1imageMy Git Knowledgelemm.eesag@lemm.ee to Programmer Humor@programming.dev · 2 years agomessage-square175linkfedilink
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up5·2 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` }