3abbe6a7f960be979089f83f47c0ff1229afbcc2
[stgit] / examples / gitconfig
1 # StGIT configuration file. Copy it to any of ~/.gitconfig or
2 # .git/config and modify as needed. Note that the latter overrides
3 # the former. The "git repo-config" command can be used as well
4
5 [user]
6 # Default author/committer details (standard GIT variables)
7 name = Your Name
8 email = your.name@yourcompany.com
9
10 [stgit]
11 # E-mail sender (added to the "From: " header)
12 #sender = Your Name <your.name@yourcompany.com>
13
14 # Automatically Bcc the address below
15 #autobcc = your.name@yourcompany.com
16
17 # Set to 'yes' if you don't want to use the 'resolved' command.
18 # 'refresh' will automatically mark the conflicts as resolved
19 #autoresolved = no
20
21 #smtpserver = localhost:25
22 #smtpuser = username
23 #smtppassword = password
24 #smtptls = no
25
26 # delay between messages in seconds (defaults to 5)
27 #smtpdelay = 5
28
29 # stg will look for this first, then look for the EDITOR environmental
30 # variable, then default to using 'vi'
31 #editor = /usr/bin/vi
32
33 # this value overrides the default PAGER environment variable
34 #pager = ~/share/stgit/contrib/diffcol.sh
35 #pager = filterdiff --annotate | colordiff | less -FRX
36
37 # GIT pull and fetch commands (should take the same arguments as
38 # git-fetch or git-pull). By default:
39 #pullcmd = git-pull
40 #fetchcmd = git-fetch
41
42 # "stg pull" policy. This is the repository default, which can be
43 # overriden on a per-branch basis using branch.*.stgit.pull-policy
44 # By default:
45 #pull-policy = pull
46 # To support remote rewinding parent branches:
47 #pull-policy = fetch-rebase
48 # To support local parent branches:
49 #pull-policy = rebase
50
51 # The three-way merge tool. Note that the 'output' file contains the
52 # same data as 'branch1'. This is useful for tools that do not take an
53 # output parameter
54 #merger = diff3 -L current -L ancestor -L patched -m -E \
55 # \"%(branch1)s\" \"%(ancestor)s\" \"%(branch2)s\" \
56 # > \"%(output)s\"
57
58 # Interactive two/three-way merge tool. It is executed by the
59 # 'resolved --interactive' command
60 #i3merge = xxdiff --title1 current --title2 ancestor --title3 patched \
61 # --show-merged-pane -m -E -O -X -M \"%(output)s\" \
62 # \"%(branch1)s\" \"%(ancestor)s\" \"%(branch2)s\"
63 #i2merge = xxdiff --title1 current --title2 patched \
64 # --show-merged-pane -m -E -O -X -M \"%(output)s\" \
65 # \"%(branch1)s\" \"%(branch2)s\"
66 #i3merge = emacs --eval '(ediff-merge-files-with-ancestor \
67 # \"%(branch1)s\" \"%(branch2)s\" \"%(ancestor)s\" nil \
68 # \"%(output)s\")'
69 #i2merge = emacs --eval '(ediff-merge-files \
70 # \"%(branch1)s\" \"%(branch2)s\" nil \"%(output)s\")'
71
72 # Automatically invoke the interactive merger in case of conflicts
73 #autoimerge = no
74
75 # Leave the original files in the working tree in case of a
76 # merge conflict
77 #keeporig = yes
78
79 # Optimize (repack) the object store after every pull
80 #keepoptimized = yes
81
82 # Extensions for the files involved in a three-way merge (ancestor,
83 # current, patched)
84 #extensions = .ancestor .current .patched
85
86 # The number of patches to be listed before and after the
87 # current one by the 'series --short' command
88 #shortnr = 5
89
90 [mail "alias"]
91 # E-mail aliases used with the 'mail' command
92 git = git@vger.kernel.org