Table of Contents
git config --global alias.l "log --pretty=format:\"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]\"" git config --global user.email "john.mallett@gmail.com" git config --global user.name "John" git config --global init.defaultBranch master git config --global core.editor "micro"
alias s='clear && echo "git status" && git status ' alias c='clear && echo "git commit " && git commit ' alias aa='git add -A ' alias a='git add ' alias ra="git rm --cached '*'" alias r="git rm --cached " alias rh='clear && echo "git reset HEAD " && git reset HEAD ' alias r='clear && echo "git reset " && git reset '
alias l='clear && echo "git log ";git log -1' alias ll='clear && echo "git log ";git log -2' alias lp='clear && git log -1 -p' alias la='clear && echo "git log All";git log' alias lk='clear && git log "--pretty=format:\"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]\""'