Merge pull request 'updated .gitconfig' (#1) from dev-1-gitconfig-creation into main
Reviewed-on: #1
This commit is contained in:
commit
d5bad0e154
1 changed files with 42 additions and 2 deletions
44
.gitconfig
44
.gitconfig
|
@ -1,10 +1,10 @@
|
||||||
[user]
|
[user]
|
||||||
name = stanislas
|
name = stanislas
|
||||||
email = stanislas@jouf.fr
|
email = stanislas@jouf.fr
|
||||||
|
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
[color]
|
|
||||||
ui = auto
|
|
||||||
[alias]
|
[alias]
|
||||||
cg = config --global
|
cg = config --global
|
||||||
aliases = !git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'
|
aliases = !git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'
|
||||||
|
@ -25,5 +25,45 @@
|
||||||
cima = commit -a -m
|
cima = commit -a -m
|
||||||
br = branch
|
br = branch
|
||||||
bra = branch -a
|
bra = branch -a
|
||||||
|
|
||||||
|
[fetch]
|
||||||
|
prune = true
|
||||||
|
pruneTags = True
|
||||||
|
all = true
|
||||||
[pull]
|
[pull]
|
||||||
rebase = true
|
rebase = true
|
||||||
|
[push]
|
||||||
|
autoSetupRemote = true
|
||||||
|
followTags = true
|
||||||
|
[commit]
|
||||||
|
verbose = true
|
||||||
|
[rebase]
|
||||||
|
autoStash = true
|
||||||
|
updateRefs = true
|
||||||
|
|
||||||
|
[color]
|
||||||
|
ui = auto
|
||||||
|
[column]
|
||||||
|
ui = auto
|
||||||
|
|
||||||
|
[branch]
|
||||||
|
sort = -committerdate
|
||||||
|
[tag]
|
||||||
|
sort = version:refname
|
||||||
|
[diff]
|
||||||
|
algorithm = histogram
|
||||||
|
colorMoved = plain
|
||||||
|
mnemonicPrefix = true
|
||||||
|
renames = true
|
||||||
|
[help]
|
||||||
|
autocorrect = prompt
|
||||||
|
|
||||||
|
[rerere]
|
||||||
|
enabled = true
|
||||||
|
autoupdate = true
|
||||||
|
|
||||||
|
[core]
|
||||||
|
excludesfile = ~/.gitignore
|
||||||
|
editor = vi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue