-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
41 lines (41 loc) · 931 Bytes
/
.gitconfig
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
[user]
email = [email protected]
name = Christopher Collins
signingkey = 86EC00F1
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[push]
default = simple
followTags = true
[alias]
s = status
l = log
d = diff
b = bisect
br = branch
dc = diff --cached
dp = diff HEAD^ HEAD
c = commit
cl = clone
cm = commit -m
co = checkout
ca = commit --amend --no-edit
cam = commit --amend
a = add
ap = add -p
undo = reset --soft HEAD^
unstage = reset HEAD
stash-all = stash save --include-untracked
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
[transfer]
fsckobjects = true
[advice]
statusHints = false
[diff]
algorithm = patience
[fetch]
fsckobjects = false
[init]
defaultBranch = main