Created
July 16, 2014 15:50
-
-
Save jmvrbanac/e11ffee71012e1de39c4 to your computer and use it in GitHub Desktop.
Personal Git Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
dl = diff HEAD^1 | |
dsl = diff HEAD^1 --stat | |
pep8-last = !git diff HEAD^1 | flake8 --diff | |
ru = remote update | |
plog = log --pretty=\"format:%Cgreen %h %Creset| %Cblue%G?%Creset | %ar | %aN | %Cblue%s\" | |
delete-merged = !git branch --merged | grep -v '^* master$' | grep -v '^ master$' | xargs git branch -d | |
[diff] | |
tool = bc3 | |
[difftool] | |
prompt = false | |
[difftool "bc3"] | |
cmd=/usr/bin/bcompare $LOCAL $REMOTE | |
[merge] | |
tool = bc3 | |
[mergetool] | |
prompt = false | |
keepBackup = false | |
[mergetool "bc3"] | |
cmd=/usr/bin/bcompare $LOCAL $REMOTE $BASE $MERGED | |
trustExitCode = true | |
keepBackup = false | |
[gui] | |
historybrowser = gitg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment