SagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agoMy Git Knowledgelemm.eeimagemessage-square163fedilinkarrow-up1235arrow-down16
arrow-up1229arrow-down1imageMy Git Knowledgelemm.eeSagXD@lemm.ee to Programmer Humor@programming.dev · 8 months agomessage-square163fedilink
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up4·edit-28 months 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` }