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 config" command can be used as well
6 # Default author/committer details (standard Git variables)
8 email = your.name@yourcompany.com
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 # Automatically sign newly created patches
18 #autosign = Signed-off-by
20 # SMTP server for sending patches
21 #smtpserver = /usr/sbin/sendmail -t -i
22 #smtpserver = localhost:25
24 # Set to 'yes' to use SMTP over TLS
27 # Username for SMTP authentication, required if TLS is used
30 # Password for SMTP. If not provided, it will be asked
31 #smtppassword = password
33 # delay between messages in seconds (defaults to 5)
36 # stg will look for this first, then look for the EDITOR environmental
37 # variable, then default to using 'vi'
40 # this value overrides the default PAGER environment variable
42 #pager = filterdiff --annotate | colordiff | less -FRSX
44 # Git pull and fetch commands (should take the same arguments as
45 # git fetch or git pull). By default:
49 # Rebase command. Note that this command is internally implemented in
50 # a different way. Only define this option if a different rebase
51 # is needed (i.e. 'git svn rebase')
52 #rebasecmd = git reset
54 # "stg pull" policy. This is the repository default, which can be
55 # overriden on a per-branch basis using branch.*.stgit.pull-policy
58 # To support remote rewinding parent branches:
59 #pull-policy = fetch-rebase
60 # To support local parent branches:
63 # Automatically invoke the interactive merger (git mergetool) in case
67 # Optimize (repack) the object store after every pull
70 # Extensions for the files involved in a three-way merge (ancestor,
72 #extensions = .ancestor .current .patched
74 # The number of patches to be listed before and after the
75 # current one by the 'series --short' command
78 # The maximum length of an automatically generated patch name
81 # Extra options to pass to "git diff" (extend/override with
82 # -O/--diff-opts). For example, -M turns on rename detection.
85 # Behave as if the --keep option is always passed
88 # Behave as if the --autostash option is always passed to rebase
91 # Include submodules by default when refreshing patch contents.
92 #refreshsubmodules = no
95 # The the format applied to the commit message when using
96 # "stg pick --expose". See the "PRETTY FORMATS" section of
97 # git-show(1) for format syntax details.
98 #expose-format = format:%B%n(imported from commit %H)
105 # E-mail aliases used with the 'mail' command
106 git = git@vger.kernel.org
109 # Specify output colors for series commands
110 applied = green_foreground
111 current = red_foreground
112 unapplied = white_foreground
113 hidden = cyan_foreground