Notes: Git

// .gitconfig

[user]
    name = Jason Gorman
    email = email@jasongorman.uk

[alias]
    ap = add -p
    sp = stash -p
    graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
    pushf = push --force-with-lease

[pull]
    rebase = true

[rebase]
    autostash = true

[fetch]
    prune = true

[color]
    ui = auto