summaryrefslogtreecommitdiff
path: root/.gitconfig
blob: 2b6e3aa650dac86902e9f96196fa022af9665b1b (plain)
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
[alias]
	br = branch
	brd = branch -d
	brD = branch -D
	co = checkout
	cob = checkout -b
	do = diff origin/master
	ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%an]" --decorate
	st = status -s
	undo = reset HEAD~
[user]
	email = mvertes@free.fr
	name = Marc Vertes
	signinkey = DF3DEEB6285CE0B5CD4E95C3C3C0303496E733B9
[pull]
	rebase = false
[push]
	autoSetupRemote = true
	default = simple
	followTags = true
[hub]
	protocol = ssh
[init]
	defaultBranch = main
[core]
	excludesfile = ~/.gitignore_global
[diff]
	algorithm = histogram
	colorMoved = plain
	mnemonicPrefix = true
	renames = true
[commit]
	verbose = true