cm0002@lemmy.world to Programmer Humor@programming.dev · 4 months agogit workflowlemmy.mlimagemessage-square39linkfedilinkarrow-up1564cross-posted to: [email protected]
arrow-up1564imagegit workflowlemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 4 months agomessage-square39linkfedilinkcross-posted to: [email protected]
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up3·4 months agoI set this up for seamless commits: function gao() { git add . git commit -a -m "$*" git push origin `git rev-parse --abbrev-ref HEAD` } Usage: gao fixing a typo
I set this up for seamless commits:
function gao() { git add . git commit -a -m "$*" git push origin `git rev-parse --abbrev-ref HEAD` }
Usage: gao fixing a typo