This commit is contained in:
2018-07-16 21:22:48 +02:00
commit 21427254e0
51 changed files with 3535 additions and 0 deletions

22
.gitconfig Normal file
View File

@@ -0,0 +1,22 @@
[user]
name = Felix Steghofer
email = felix.steghofer@gmail.com
[push]
default = simple
[merge]
tool = intellij
[core]
autocrlf = input
[mergetool "intellij"]
cmd = /usr/bin/intellij-idea-ultimate-edition merge $(cd $(dirname "$LOCAL") && pwd)/$(basename "$LOCAL") $(cd $(dirname "$REMOTE") && pwd)/$(basename "$REMOTE") $(cd $(dirname "$BASE") && pwd)/$(basename "$BASE") $(cd $(dirname "$MERGED") && pwd)/$(basename "$MERGED")
trustExitCode = true
[diff]
tool = code
[difftool "intellij"]
cmd = /usr/bin/intellij-idea-ultimate-edition diff $(cd $(dirname "$LOCAL") && pwd)/$(basename "$LOCAL") $(cd $(dirname "$REMOTE") && pwd)/$(basename "$REMOTE")
[difftool "code"]
cmd = code --wait --diff $LOCAL $REMOTE
[alias]
quick-stats = ! /usr/local/bin/git-quick-stats