-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
39 lines (37 loc) · 1.08 KB
/
Copy pathgitconfig
File metadata and controls
39 lines (37 loc) · 1.08 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
[core]
editor = vim
quotepath = off
[user]
name = Simon Désaulniers
email = sim.desaulniers@gmail.com
[color]
ui = true
[alias]
lol = log --decorate --graph --oneline
loll = log --decorate --graph --oneline --all
st = status -s
co = checkout
cp = cherry-pick
br = branch
mernff = merge --no-ff
punff = pull --no-ff
samend = commit --amend --no-edit
whatsnew = fetch --dry-run
show = show --show-signature
diffno = diff --name-only
[log]
date = iso-local
[merge]
tool = vimdiff
[push]
autoSetupRemote = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper = !/usr/bin/gh auth git-credential
# vim:filetype=gitconfig: