sag@lemm.ee to Programmer Humor@programming.dev · 1 年前My Git Knowledgelemm.eeimagemessage-square147fedilinkarrow-up11.08Karrow-down125
arrow-up11.05Karrow-down1imageMy Git Knowledgelemm.eesag@lemm.ee to Programmer Humor@programming.dev · 1 年前message-square147fedilink
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up5·edit-21 年前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` }
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` }