You must log in or register to comment.
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
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