-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
56 lines (50 loc) · 1001 Bytes
/
gitconfig
File metadata and controls
56 lines (50 loc) · 1001 Bytes
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
[alias]
r = reset
rb = rebase
f = fetch
fu = fetch upstream
c = clone
cp = cherry-pick
ci = commit
ca = commit --amend
st = status
s = status
d = diff
ds = diff --staged
a = add
ap = add -p
b = branch
l = log
long = log --pretty=full
p = push
co = checkout
lol = log --pretty=oneline --abbrev-commit --graph --decorate
gr = grep -n --color=always
h = help
tags = tag -l -n1
fu = fetch upstream
rud = rebase upstream/dev
compare = rev-list --left-right --count HEAD...origin/main
st = stash
[user]
name = Julien Desrosiers
email = juliend2@gmail.com
[color]
ui = true
[push]
default = simple
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[core]
editor = "vim"
[init]
defaultBranch = master
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential