-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
executable file
·47 lines (47 loc) · 1.04 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
[user]
email = [email protected]
name = Artur Bosch
[pull]
rebase = true
[core]
autocrlf = input
editor = hx
excludesfile = ~/.gitignore
quotepath = false
[alias]
aa = add --all
ap = add -p
aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /' | sort
amend = commit --amend
cm = commit -m
co = checkout
cob = checkout -b
fixup = commit --fixup
noc = rev-list HEAD --count
lc = log --graph --pretty=format:\"%an: %s%C(yellow)%d%Creset %Cgreen(%cr)%Creset\" --date=relative
rev = rev-parse HEAD
pf = push -f
pou = push origin -u
s = status
rba = rebase --abort
rbc = rebase --continue
rbi = rebase -i
rbs = rebase --skip
tags = fetch --tags
tl = log --tags --simplify-by-decoration --pretty='format:%ci %d'
tree = ls-tree -r main --name-only
up = pull --rebase --autostash
[fetch]
prune = true
[rebase]
autoStash = true
autosquash = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[merge]
tool = meld
[init]
defaultBranch = main