Skip to content

Instantly share code, notes, and snippets.

@jpragma
Created July 6, 2020 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpragma/fd45425c8b9256b49e094a8fa23ef48d to your computer and use it in GitHub Desktop.
Save jpragma/fd45425c8b9256b49e094a8fa23ef48d to your computer and use it in GitHub Desktop.
Git Settings
$ git config -l --global
http.sslverify=false
http.ignorecase=true
http.filemode=false
http.autocrlf=false
user.name=Isaac Levin
user.email=my@email.com
alias.st=status
alias.ci=commit
alias.co=checkout
alias.br=branch
alias.unstage=reset HEAD
alias.lg=log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
alias.pl=pull --rebase
alias.prune=remote prune origin
core.excludesfile=~/.gitignore
core.autocrlf=true
core.whitespace=cr-at-eol
core.filemode=false
credential.helper=cache --timeout=14400
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment