diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-13 16:24:22 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-13 16:24:22 -0400 |
commit | 3a9dbb6a9e194b5ba9aff5a33cb0ae9f1556bfe3 (patch) | |
tree | dc8333610c13c61ca6412e1e6d589aadd3f30ef3 | |
parent | b5d0e67580f96b2fe90973bb156f1a62a874eb55 (diff) |
Add gitconfig (with $XDG_CONFIG_HOME/git )
-rw-r--r-- | .config/git/config | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/git/config b/.config/git/config new file mode 100644 index 0000000..e02d617 --- /dev/null +++ b/.config/git/config @@ -0,0 +1,11 @@ +# This is Git's per-user configuration file. +[user] +# Please adapt and uncomment the following lines: +name = Benjamin Chausse +email = benjamin@chausse.xyz +[init] + defaultBranch = master +[push] + autoSetupRemote = true +[pull] + rebase = false |