cm0002@lemmy.world to Programmer Humor@programming.dev · 19 days agogit workflowlemmy.mlexternal-linkmessage-square36fedilinkarrow-up11arrow-down10cross-posted to: programmerhumor@lemmy.ml
arrow-up11arrow-down1external-linkgit workflowlemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 19 days agomessage-square36fedilinkcross-posted to: programmerhumor@lemmy.ml
minus-squarethirteene@lemmy.worldlinkfedilinkarrow-up0·18 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