-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathgitconfig
More file actions
56 lines (53 loc) · 1.3 KB
/
gitconfig
File metadata and controls
56 lines (53 loc) · 1.3 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
55
56
[user]
name = Rem Zolotykh
email = remchi@gmail.com
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = auto
[gc]
auto = 1
[alias]
st = status
cm = commit -m
co = checkout
di = diff
dc = diff --cached
ds = diff --staged
aa = add --all
pom = push origin master
b = branch
unstage = reset HEAD # un-add files from index (tracking)
uncommit = reset --soft HEAD^ # go back one commit, put changes into your working dir and index
[format]
pretty=format:%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset
[merge]
tool = vimdiff
summary = true
[core]
editor = vim
excludesfile = /Users/rem/.gitignore_global
autocrlf = input
[credential]
helper = osxkeychain
[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
[filter "media"]
clean = git media clean %f
smudge = git media smudge %f
required = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[gui]
recentrepo = /Users/rem/code/jsfullstacker-vue/jsfullstacker-api