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]
|
||||
name = stanislas
|
||||
email = stanislas@jouf.fr
|
||||
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[color]
|
||||
ui = auto
|
||||
|
||||
[alias]
|
||||
cg = config --global
|
||||
aliases = !git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'
|
||||
|
@ -25,5 +25,45 @@
|
|||
cima = commit -a -m
|
||||
br = branch
|
||||
bra = branch -a
|
||||
|
||||
[fetch]
|
||||
prune = true
|
||||
pruneTags = True
|
||||
all = true
|
||||
[pull]
|
||||
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