The gitmergeonefile config section is deprecated
[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
12# Set to 'yes' if you don't want to use the 'resolved' command.
13# 'refresh' will automatically mark the conflicts as resolved
14autoresolved: no
15
b4bddc06 16smtpserver: localhost:25
eb026d93
B
17#smtpuser: username
18#smtppassword: password
b4bddc06 19
cd076ff6
CL
20# stg will look for this first, then look for the EDITOR environmental
21# variable, then default to using 'vi'
22#editor: /usr/bin/vi
23
41a6d859
CM
24# Different three-way merge tools below. Uncomment the preferred one.
25# Note that the 'output' file contains the same data as 'branch1'. This
26# is useful for tools that do not take an output parameter
41a6d859
CM
27merger: diff3 -L local -L older -L remote -m -E \
28 "%(branch1)s" "%(ancestor)s" "%(branch2)s" > "%(output)s"
29
30#merger: xxdiff --title1 local --title2 older --title3 remote \
31# --show-merged-pane -m -E -O -X -M "%(output)s" \
32# "%(branch1)s" "%(ancestor)s" "%(branch2)s"
33
34#merger: emacs --eval '(ediff-merge-files-with-ancestor
35# "%(branch1)s" "%(branch2)s" "%(ancestor)s" nil "%(output)s")'
36
37# Leave the original files in the working tree in case of a merge conflict
38keeporig: yes