429822c6c83abf9394dc8c284c7e50581e366222
[stgit] / stgitrc
1 [stgit]
2 # Default author/committer details
3 #authname: Your Name
4 #authemail: your.name@yourcompany.com
5 #commname: Your Name
6 #commemail: your.name@yourcompany.com
7
8 # Set to 'yes' if you don't want to use the 'resolved' command.
9 # 'refresh' will automatically mark the conflicts as resolved
10 autoresolved: no
11
12 smtpserver: localhost:25
13
14
15 [gitmergeonefile]
16 # Different three-way merge tools below. Uncomment the preferred one.
17 # Note that the 'output' file contains the same data as 'branch1'. This
18 # is useful for tools that do not take an output parameter
19
20 merger: diff3 -L local -L older -L remote -m -E \
21 "%(branch1)s" "%(ancestor)s" "%(branch2)s" > "%(output)s"
22
23 #merger: xxdiff --title1 local --title2 older --title3 remote \
24 # --show-merged-pane -m -E -O -X -M "%(output)s" \
25 # "%(branch1)s" "%(ancestor)s" "%(branch2)s"
26
27 #merger: emacs --eval '(ediff-merge-files-with-ancestor
28 # "%(branch1)s" "%(branch2)s" "%(ancestor)s" nil "%(output)s")'
29
30 # Leave the original files in the working tree in case of a merge conflict
31 keeporig: yes