-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_gitconfig
More file actions
80 lines (78 loc) · 1.74 KB
/
_gitconfig
File metadata and controls
80 lines (78 loc) · 1.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[alias]
# general
br = branch
ci = commit
co = checkout
cp = cherry-pick
ls = ls-tree -r HEAD --name-only
st = status --short
# diff
diffs = diff --staged
diff-no-locks = diff -- ':!package-lock.json' ':!composer.lock' ':!Gemfile.lock' ':!pnpm-lock.yaml'
show = icdiff
today = diff --stat 'HEAD@{midnight}'
# logging
last = log -1
lc = log -p -1
logp = log --oneline -10
logpp = log --oneline -25
logppp = log --oneline -50
tree = log --color --graph --abbrev-commit --oneline -n 15
[branch]
sort = -committerdate
[column]
ui = auto
[color]
interactive = auto
ui = auto
branch = auto
[color "diff"]
added = green bold
changed = yellow bold
modified = yellow bold
untracked = red bold
[color "status"]
added = green bold
changed = yellow bold
modified = yellow bold
untracked = red bold
[commit]
template = /Users/mike/.stCommitMsg
[core]
autocrlf = input
editor = vim
excludesfile = ~/.gitignore
fileMode = false
pager = diff-so-fancy | less --tabs=4 -RFX
safecrlf = false
whitespace = indent-with-non-tab,space-before-tab,space-in-empty-line,trailing-space
[diff]
tool = kdiff3
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[github]
user = michaelchadwick
[help]
autocorrect = prompt
[icdiff]
options = --highlight --line-numbers
[include]
# pull machine-specific info I want to use on the machine
path = .gitconfig.d/user.txt
[init]
defaultBranch = main
[push]
default = matching
[status]
branch = true
submodulesummary = true
[user]
name = Michael Chadwick
email = michael.chadwick@gmail.com