@cm0002@lemmy.world to Programmer Humor@programming.dev • 11 days agogit workflowlemmy.mlimagemessage-square39fedilinkarrow-up1560arrow-down17cross-posted to: programmerhumor@lemmy.ml
arrow-up1553arrow-down1imagegit workflowlemmy.ml@cm0002@lemmy.world to Programmer Humor@programming.dev • 11 days agomessage-square39fedilinkcross-posted to: programmerhumor@lemmy.ml
minus-square@thirteene@lemmy.worldlinkfedilink3•10 days 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