-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
80 lines (64 loc) 路 1.76 KB
/
Copy path.gitconfig
File metadata and controls
80 lines (64 loc) 路 1.76 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
[core]
editor = vim
pager = diff-so-fancy | less --tabs=4 -RFX
autocrlf = input
[alias]
a = add
ci = commit -v
ck = checkout
ckh = ! "[ $# -eq 0 ] && git checkout HEAD . || git checkout HEAD \"$@\""
df = diff
fx = commit --fixup HEAD
lg = log --graph --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %C(cyan)%an' --abbrev-commit --date=relative
lgno = log --name-only
pl = pull
ps = push
psf = push --force-with-lease
refl = reflog --format='%C(auto)%h %<|(17)%gd %C(blue)%ci%C(reset) %s'
review = !git stash && git fetch origin $1 && (git branch -m $1 tmp-review-$1-$(date +%Y-%m-%d-%H-%M-%S) || :) && git checkout -b $1 origin/$1 && :
st = status
hide = "update-index --assume-unchanged"
show = "update-index --no-assume-unchanged"
hidden = "!git ls-files -v | grep '^[a-z]'"
skip = "update-index --skip-worktree"
noskip = "update-index --no-skip-worktree"
skipped = "!git ls-files -v | grep ^S"
ri = "!sh -c \"git rebase -i HEAD~$1\" -"
rias = "!sh -c \"git rebase -i --autosquash $1\" -"
[help]
autocorrect = 1
[branch]
autosetupmerge = true
autosetuprebase = always
[push]
default = current
[rerere]
enabled = 1
[merge]
ff = no
[pull]
rebase = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[color]
ui = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse
[commit]
gpgsign = true
[user]
email = 3731686+spiralnegative@users.noreply.github.com
name = Monika Georgieva