-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
59 lines (58 loc) · 1.36 KB
/
Copy path.gitconfig
File metadata and controls
59 lines (58 loc) · 1.36 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
[alias]
s = status
c = commit
sw = switch
co = checkout
cob = checkout -tb
l = log --graph --pretty=simple --all --not --remotes
b = branch
dag = log --graph --format='format:%C(yellow)%h%C(reset) %C(blue)\"%an\" <%ae>%C(reset) %C(magenta)%ar%C(reset)%C(auto)%d%C(reset)%n%s' --date-order
d = diff
ds = diff --stat
dh = diff HEAD
rbi = rebase --interactive
pr = pull --rebase
fix = "!git log -n 50 --pretty=format:'%h %s' --no-merges | fzf | cut -c -7 | xargs -o git commit --fixup"
pup = push -u origin HEAD
[color]
diff = auto
status = auto
branch = auto
ui = auto
[core]
excludesfile = ~/.gitignore_global
pager = delta
attributesfile = /home/gordon/.gitattributes
[branch]
autosetupmerge = always
autosetuprebase = always
[push]
default = upstream
followTags = true
[pretty]
simple=%C(auto)%h%d [%ci] %s - %cn
[diff]
colorMoved = default
[format]
pretty=simple
[merge]
conflictstyle = diff3
[rebase]
autosquash = true
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[interactive]
diffFilter = delta --color-only
[init]
templatedir = ~/.git-templates
defaultBranch = main
[delta]
navigate = true
light = false
side-by-side = true
theme = base16-256
[user]
email = gtosh4@gmail.com
name = G G
[include]
path=.gitconfig_sys