-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig.sample
More file actions
63 lines (56 loc) · 2 KB
/
Copy path.gitconfig.sample
File metadata and controls
63 lines (56 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# .gitconfig.sample — mlisp contributor git configuration
#
# Copy relevant sections into your ~/.gitconfig
# Replace example.com addresses with your actual list addresses.
[format]
subjectPrefix = PATCH mlisp
coverLetter = auto
numbered = auto
[sendemail]
to = mlisp-devel@lists.example.com
confirm = always
chainreplyto = false
annotate = yes
suppresscc = self
# ─── MUA: msmtp (recommended for users without a local MTA) ──────────────────
# Install: apt install msmtp / brew install msmtp
# Then:
#
# [sendemail]
# smtpserver = /usr/bin/msmtp
#
# ~/.msmtprc:
# account default
# host mail.example.com
# port 587
# auth on
# user you@example.com
# password yourpassword
# tls on
# ─── MUA: direct SMTP (Gmail) ─────────────────────────────────────────────────
#
# [sendemail]
# smtpserver = smtp.gmail.com
# smtpserverport = 587
# smtpencryption = tls
# smtpuser = you@gmail.com
# Then: git send-email will prompt for password (or use credential helper)
# ─── MUA: direct SMTP (Fastmail) ─────────────────────────────────────────────
#
# [sendemail]
# smtpserver = smtp.fastmail.com
# smtpserverport = 587
# smtpencryption = tls
# smtpuser = you@fastmail.com
# ─── MUA: local Postfix relay ────────────────────────────────────────────────
#
# [sendemail]
# smtpserver = /usr/sbin/sendmail
# ─── Signing ─────────────────────────────────────────────────────────────────
# Always sign off commits:
#
# [commit]
# gpgSign = false # set true if you want GPG-signed commits
#
# Add sign-off automatically:
# alias: git config alias.cs "commit --signoff"