-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
54 lines (51 loc) · 1.25 KB
/
Copy pathgitconfig
File metadata and controls
54 lines (51 loc) · 1.25 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[user]
name = Ronalds Gailis
email = ronaldsg@gmail.com
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = red reverse
local = blue
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[mergetool]
keepBackup = false
[core]
autocrlf = input
editor = /usr/bin/vim
excludesfile = /Users/ronaldsgailis/.gitignore_global
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
f = "!git ls-files | grep -i"
grep = grep -Ii
gr = grep -Ii
st = status
ci = commit
br = branch
co = checkout
df = diff
m = checkout master
amend = commit --amend
ammend = amend
#display defined aliases
#aliases = !git config --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /'
[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
[push]
default = current
[pull]
rebase = false