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