@cm0002@lemmy.world to Programmer Humor@programming.dev • 3 months agogit workflowlemmy.mlimagemessage-square39arrow-up1563cross-posted to: programmerhumor@lemmy.ml
arrow-up1563imagegit workflowlemmy.ml@cm0002@lemmy.world to Programmer Humor@programming.dev • 3 months agomessage-square39cross-posted to: programmerhumor@lemmy.ml
minus-square@thirteene@lemmy.worldlinkfedilink3•3 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