Skip to content

Instantly share code, notes, and snippets.

@bradyrx
Created March 11, 2019 20:09
Show Gist options
  • Save bradyrx/a9d403f2e97b9d9ab33b6a4e614381cf to your computer and use it in GitHub Desktop.
Save bradyrx/a9d403f2e97b9d9ab33b6a4e614381cf to your computer and use it in GitHub Desktop.
sample git config file
[user]
name = Riley X. Brady
email = riley.brady@colorado.edu
[core]
editor = /usr/local/bin/vim
autocrlf = input
whitespace = trailing-space
excludesfile = ~/.git_core_excludes
edits = /usr/bin/vim
[alias]
logg = log --graph --oneline --abbrev-commit --decorate
st = status
di = difftool --tool=vimdiff --no-promt
ci = commit -a
up = fetch --all -p
co = checkout
rb = rebase
rc = rebase --continue
[diff]
tool = vimdiff
[grep]
lineNumber = true
[color]
ui = true
[merge]
tool = vimdiff
summary = true
ff = false
[github]
user = bradyrx
[push]
default = nothing
[rerere]
enabled = 1
[init]
templatedir = ~/.git_template
[log]
date = local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment