diff options
author | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
commit | e24f418e3499afd1e9e529b8656a35376e69f52a (patch) | |
tree | 90e01f42d46dec91e3a6cace4de6d089152fad29 /home/dots/.gitconfig | |
download | guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.gz guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.bz2 guix-e24f418e3499afd1e9e529b8656a35376e69f52a.zip |
initial commit
Diffstat (limited to 'home/dots/.gitconfig')
-rw-r--r-- | home/dots/.gitconfig | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/home/dots/.gitconfig b/home/dots/.gitconfig new file mode 100644 index 0000000..99a675c --- /dev/null +++ b/home/dots/.gitconfig @@ -0,0 +1,49 @@ +[alias] + pr = "!gh pr" + issue = "!gh issue" + bug = "!git-bug" +[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 +[merge] + tool = meld +[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 |