sag@lemm.ee to Programmer Humor@programming.dev · 1 year agoMy Git Knowledgelemm.eeimagemessage-square147fedilinkarrow-up11.08Karrow-down125
arrow-up11.05Karrow-down1imageMy Git Knowledgelemm.eesag@lemm.ee to Programmer Humor@programming.dev · 1 year agomessage-square147fedilink
minus-squarego_go_gadget@lemmy.worldlinkfedilinkarrow-up10·1 year agoWoah look at mr. fancy pants with his git push arguments.
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up5·edit-21 year 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 push
arguments.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` }