-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
78 lines (77 loc) · 1.68 KB
/
dot_gitconfig
File metadata and controls
78 lines (77 loc) · 1.68 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
[user]
name = Hector Oswaldo Caballero
email =
username = oswcab
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
pager = delta
[color]
ui = auto
[color "branch"]
current = yellow
local = green
remote = cyan
[color "diff"]
meta = white
frag = magenta
old = red
new = green
whitespace = red reverse
[color "status"]
added = green
changed = yellow
untracked = red
[diff]
tool = vimdiff
colorMoved = default
[delta]
dark = true
; side-by-side = true
line-numbers = true
navigate = true
[alias]
a = add
aa = add --all
all = add .
bl = blame
br = branch
bra = branch -a
brd = branch -D
brm = branch -m
ca = commit --amend -v
cm = commit -v
cne = commit --amend --no-edit
co = checkout
cof = checkout --force
cp = cherry-pick
cpa = cherry-pick --abort
cpc = cherry-pick --continue
df = diff
ft = fetch --prune
h = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --abbrev-commit --date=iso8601
hh = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --abbrev-commit --date=iso8601 --name-only
l = log
lod = log --graph --decorate
lol = log --oneline
pl = pull
ps = push
psd = push --force --delete origin
psf = push --force
psu = push --set-upstream
rb = rebase
rba = rebase --abort
rbc = rebase --continue
rbi = rebase -i
rh = reset --hard
rs = reset
rt = remote
sf = show --pretty="" --name-only
sh = stash
smu = submodule update
smuf = submodule update --force
st = status
sw = show
[protocol]
version = 2