Skip to content

Instantly share code, notes, and snippets.

@LeeFlannery
Last active May 24, 2016 14:49
Show Gist options
  • Save LeeFlannery/3b285d5a38f49051205f to your computer and use it in GitHub Desktop.
Save LeeFlannery/3b285d5a38f49051205f to your computer and use it in GitHub Desktop.
.gitconfig Windows, revised 5-2016
[alias]
unstage = reset HEAD
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
[core]
autocrlf = true
excludesfile = /c/users/guy/.gitignore_global
editor = atom --wait
[push]
default = simple
[user]
email = guy@example.com
name = Guy
[diff]
tool = kdiff3
[difftool "kdiff"]
prompt = false
path = c:/Program Files/KDiff3/kdiff3.exe
trustExitCode = false
[merge]
tool = kdiff3
[mergetool "kdiff3"]
path = c:/Program Files/KDiff3/kdiff3.exe
keepBackup = false
trustExitCode = false
[difftool]
prompt = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment