[ADD] git global configuration
This commit is contained in:
parent
a130ffe317
commit
d9ca7787bb
22
git/.gitconfig
Normal file
22
git/.gitconfig
Normal file
|
@ -0,0 +1,22 @@
|
|||
[core]
|
||||
excludesfile = ~/.gitignore
|
||||
[color]
|
||||
ui = auto
|
||||
branch = auto
|
||||
diff = auto
|
||||
interactive = auto
|
||||
status = auto
|
||||
[commit]
|
||||
verbose = true
|
||||
[pull]
|
||||
rebase = true
|
||||
[branch]
|
||||
autosetubrebase = always
|
||||
[push]
|
||||
default = simple
|
||||
[rebase]
|
||||
autoSquash = true
|
||||
autoStash = true
|
||||
[user]
|
||||
email = bruno.belanyi@epita.fr
|
||||
name = Bruno BELANYI
|
5
git/.gitignore
vendored
Normal file
5
git/.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
# No binary files
|
||||
*.so
|
||||
*.o
|
||||
*.a
|
||||
*.out
|
1
git/.stow-local-ignore
Normal file
1
git/.stow-local-ignore
Normal file
|
@ -0,0 +1 @@
|
|||
# We don't want to ignore the .gitignore
|
Loading…
Reference in a new issue