-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
67 lines (52 loc) · 1.12 KB
/
.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
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
[user]
name = Ali Kaafarani
email = [email protected]
signingkey = 3624317D5BD201F8E93D9BD1916A78330030199E
[core]
editor = vim
whitespace = space-before-tab,trailing-space,cr-at-eol
[alias]
st = status -sb
lg = log --graph --abbrev-commit --date=relative --pretty=format:'%C(yellow)%h%Creset -%Cred%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
gr = grep --heading --break
br = branch
co = checkout
df = diff
ci = commit
amend = commit --amend
rb = rebase
fa = fetch --all
rank = shortlog -sn --no-merges
conflicted = diff --name-only --diff-filter=U
[init]
defaultBranch = master
[branch]
autosetupmerge = always
[merge]
conflictstyle = diff3
[push]
default = current
[pull]
ff = only
[log]
date = default
[help]
format = man
autocorrect = -1
[grep]
extendRegexp = true
lineNumber = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[diff]
compactionHeuristic = true
[commit]
verbose = true
gpgSign = true
[fetch]
prune = true
[gcrypt]
require-explicit-force-push = true