-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
26 lines (25 loc) · 939 Bytes
/
.gitconfig
File metadata and controls
26 lines (25 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[color]
ui = true
[core]
fileMode = false
excludesfile = /Users/matt/Dev/dotfiles/.gitignore
[user]
name = Mateusz Jendrzyn
email = mateusz.jendrzyn@monitechnologies.com
[push]
default = simple
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
merged-remote = "!git branch -r --merged | grep origin | grep -v '>' | egrep -v 'master|develop|release/' | xargs -L1 | sed 's/origin\\///g'"
merges = log --pretty=format:"%h%x09%an%x09%ad%x09%s" --merges
tags = tag -l --sort=version:refname
[filter "media"]
clean = git media clean %f
smudge = git media smudge %f
required = true
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true