Add the 'autobcc' config option
[stgit] / examples / stgitrc
CommitLineData
47e93ba9
CM
1# StGIT configuration file. Copy it to any of /etc/stgitrc, ~/.stgitrc
2# or .git/stgitrc and modify as needed. Note that the latter overrides
3# the former.
4
41a6d859
CM
5[stgit]
6# Default author/committer details
7#authname: Your Name
8#authemail: your.name@yourcompany.com
9#commname: Your Name
10#commemail: your.name@yourcompany.com
11
d884c4d8
CM
12# Automatically Bcc the address below
13#autobcc: your.name@yourcompany.com
14
41a6d859
CM
15# Set to 'yes' if you don't want to use the 'resolved' command.
16# 'refresh' will automatically mark the conflicts as resolved
b3bfa120 17#autoresolved: no
41a6d859 18
b3bfa120 19#smtpserver: localhost:25
eb026d93
B
20#smtpuser: username
21#smtppassword: password
b4bddc06 22
b3bfa120
CM
23# delay between messages in seconds (defaults to 5)
24#smtpdelay: 5
1e78b006 25
cd076ff6
CL
26# stg will look for this first, then look for the EDITOR environmental
27# variable, then default to using 'vi'
28#editor: /usr/bin/vi
29
52f3900c 30# this value overrides the default PAGER environment variable
0eec33bc 31#pager: ~/share/stgit/contrib/diffcol.sh
52f3900c 32
b3bfa120
CM
33# GIT pull command (should take the same arguments as git-pull)
34#pullcmd: git-pull
35
1e075406
CM
36# The three-way merge tool. Note that the 'output' file contains the
37# same data as 'branch1'. This is useful for tools that do not take an
38# output parameter
b3bfa120
CM
39#merger: diff3 -L current -L ancestor -L patched -m -E \
40# "%(branch1)s" "%(ancestor)s" "%(branch2)s" > "%(output)s"
41a6d859 41
1e075406
CM
42# Interactive three-way merge tool. It is executed by the 'resolved
43# --interactive' command
44#imerger: xxdiff --title1 current --title2 ancestor --title3 patched \
41a6d859
CM
45# --show-merged-pane -m -E -O -X -M "%(output)s" \
46# "%(branch1)s" "%(ancestor)s" "%(branch2)s"
1e075406 47#imerger: emacs --eval '(ediff-merge-files-with-ancestor
41a6d859
CM
48# "%(branch1)s" "%(branch2)s" "%(ancestor)s" nil "%(output)s")'
49
50# Leave the original files in the working tree in case of a merge conflict
b3bfa120 51#keeporig: yes
d7fade4b
CM
52
53# Extensions for the files involved in a three-way merge (ancestor,
54# current, patched)
55#extensions: .ancestor .current .patched