Skip to content

Instantly share code, notes, and snippets.

@lbenie
Created May 3, 2017 14:42
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 lbenie/1e9f60bdbab4d70555a454df48604495 to your computer and use it in GitHub Desktop.
Save lbenie/1e9f60bdbab4d70555a454df48604495 to your computer and use it in GitHub Desktop.
git config
[user]
email = my.email
name = my.name
[core]
autocrlf = false
editor = code --wait
safecrlf = true
fscache = true
preloadindex = true
[gc]
auto = 256
[alias]
co = checkout
ci = commit
st = status
br = branch
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
lol = log --graph --decorate --pretty=oneline --abbrev-commit
[color]
branch = auto
diff = auto
interactive = auto
status = auto
#comment diff and difftool if you don't have vscode
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[push]
default = upstream
[pull]
rebase = true
[credential]
# helper = wincred
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment