Table of Contents

Graph

warning: you may need to be using mac/linux :(

source: this guy

for my fellow gitters who:

add this: .bashrc (linux) OR .bash_profile (mac)

function lazygit() {
    git add .
    git commit -a -m "$1"
    git push
}

then: in your terminal

lazygit "this is my commit message"

and then it git adds, git commits and git pushes!!!!!!