.gitconfig
code:text
credential
helper = cache
user
email = author@example.com
name = Author Name
[https "https://github.com"]
proxy = http://example.com:8080
sslVerify = false
url "git@github.com:"
insteadOf = https://github.com/
push
default = current
pull
default = current
alias
lg1 = 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(bold yellow)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
commit-somebody = commit --author='Somebody Name <somebody@sample.com>'