forked from bjeanes/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgitconfig
More file actions
63 lines (58 loc) · 1.3 KB
/
gitconfig
File metadata and controls
63 lines (58 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
57
58
59
60
61
62
63
[user]
name = Ryan Bigg
email = me@ryanbigg.com
[merge]
summary = true
tool = opendiff
[alias]
sp = stash pop
pf = push --force-with-lease
current-branch = "!git rev-parse --abbrev-ref HEAD"
changed-files = "!git diff --name-only $(git current-branch) $(git merge-base $(git current-branch) master)"
rspec = "!git changed-files *_spec.rb | xargs -t -- rspec"
rubocop = "!git changed-files *.rb | xargs -t -- rubocop"
set-upstream = "!git branch --set-upstream-to=origin/$(git current-branch) $(git current-branch)"
[commit]
verbose = true
[apply]
whitespace = nowarn
[color]
branch = auto
diff = auto
status = auto
ui = auto
[core]
editor = code
excludesfile = ~/.gitignore
whitespace = fix
editor = code -w
[help]
autocorrect = 1
[push]
default = current
autoSetupRemote = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = true
[init]
defaultBranch = develop
[rerere]
enabled = true
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[includeIf "gitdir:~/code/fz/"]
path = ~/code/fz/.gitconfig
[column]
ui = auto
[tag]
sort = version:refname
[diff]
mnemonicPrefix = true
colorMoved = plain
[fetch]
prune = true
pruneTags = true