summaryrefslogtreecommitdiff
path: root/gitconfig
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-06 17:07:49 -0500
committerMarc Coquand <marc@mccd.space>2024-05-06 17:07:49 -0500
commit80b95fcaab9149466e656430eb4c0041e28ee455 (patch)
treec9161d0815b3f81cea9f522891ee148bb5f427af /gitconfig
downloadrcm-80b95fcaab9149466e656430eb4c0041e28ee455.tar.gz
rcm-80b95fcaab9149466e656430eb4c0041e28ee455.tar.bz2
rcm-80b95fcaab9149466e656430eb4c0041e28ee455.zip
Initial commit
Diffstat (limited to 'gitconfig')
-rw-r--r--gitconfig46
1 files changed, 46 insertions, 0 deletions
diff --git a/gitconfig b/gitconfig
new file mode 100644
index 0000000..52e8f08
--- /dev/null
+++ b/gitconfig
@@ -0,0 +1,46 @@
+[alias]
+ pr = "!gh pr"
+ issue = "!gh issue"
+[user]
+ email = marc@mccd.space
+ name = Marc Coquand
+[credential "https://github.com"]
+ helper = !gh auth git-credential
+[credential "https://gist.github.com"]
+ helper = !gh auth git-credential
+[credential "smtp://marcc%40fastmail.fr@smtp.fastmail.com%3a465"]
+ helper =
+ helper = !pass 'fastmail/git'
+[color]
+ ui = false
+[mergetool]
+ layout = LOCAL,MERGED,REMOTE
+[sendemail]
+ smtpserver = smtp.fastmail.com
+ smtpuser = marcc@fastmail.fr
+ smtpencryption = ssl
+ smtpserverport = 465
+[pull]
+ rebase = true
+[color "diff"]
+ meta = blue
+ old = red
+ new = green
+[log]
+ date = relative
+[format]
+ pretty = oneline
+ signoff = true
+[credential]
+ helper = store
+[push]
+ autoSetupRemote = true
+[commit]
+ gpgsign = true
+ verbose = true
+[init]
+ defaultBranch = main
+[grep]
+ lineNumber = true
+[help]
+ autocorrect = prompt