Skip to content

Command Line One Liners

Not all techincally one liners but they will make one liners!

Quick git commits and push

gitout() {
    git add . && git commit -m "${1}" && git push
}

Usage:

gitout "quick commit"