-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
39 lines (38 loc) · 1.14 KB
/
Copy path.gitconfig
File metadata and controls
39 lines (38 loc) · 1.14 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
# This is Git's per-user configuration file.
[user]
name = Matthew Hinea
email = matthew.hinea@gmail.com
[color]
diff = auto
status = auto
branch = auto
ui = always
editor = vim
excludesfile = /Users/matthi/.gitignore_global
[alias]
co = checkout
ci = commit
s = status
br = branch
type = cat-file -t
dump = cat-file -p
unstage = reset HEAD --
helper = osxkeychain
hist = log --pretty=format:\"%Cgreen%h%Creset %ad | %s%d %Cblue[%an]%Creset \" --graph --date=short
logs = log --pretty=oneline --abbrev-commit
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ab = branch --sort=committerdate
[credential]
[push]
default = simple
[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
[format]
pretty = format:%Cblue%aN%Creset %C(auto)%h %Cgreen%cd %d %Creset%s %+b
[core]
excludesFile = /Users/matthi/.gitignore_global
editor = vim