summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-10-13 16:24:22 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-10-13 16:24:22 -0400
commit3a9dbb6a9e194b5ba9aff5a33cb0ae9f1556bfe3 (patch)
treedc8333610c13c61ca6412e1e6d589aadd3f30ef3
parentb5d0e67580f96b2fe90973bb156f1a62a874eb55 (diff)
Add gitconfig (with $XDG_CONFIG_HOME/git )
-rw-r--r--.config/git/config11
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