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-squarego_go_gadget@lemmy.worldlinkfedilinkarrow-up11·2 years agoWoah look at mr. fancy pants with his git push arguments.
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up5·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` }
Woah look at mr. fancy pants with his
git pusharguments.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` }