can be overridden by the `\--max-pack-size` option of
linkgit:git-repack[1].
+pager.<cmd>::
+ Allows to set your own pager preferences for each command, overriding
+ the default. If `\--pager` or `\--no-pager` is specified on the command
+ line, it takes precedence over this option.
+
pull.octopus::
The default merge strategy to use when pulling multiple branches
at once.
<div class="sectionbody">\r
<div class="verseblock">\r
<div class="content"><em>git am</em> [--signoff] [--keep] [--utf8 | --no-utf8]\r
- [--3way] [--interactive] [--binary]\r
+ [--3way] [--interactive]\r
[--whitespace=<option>] [-C<n>] [-p<n>]\r
[<mbox> | <Maildir>…]\r
<em>git am</em> (--skip | --resolved | --abort)</div></div>\r
</p>\r
</dd>\r
<dt>\r
--b\r
-</dt>\r
-<dt>\r
---binary\r
-</dt>\r
-<dd>\r
-<p>\r
- Pass <tt>--allow-binary-replacement</tt> flag to <em>git-apply</em>\r
- (see <a href="git-apply.html">git-apply(1)</a>).\r
-</p>\r
-</dd>\r
-<dt>\r
--whitespace=<option>\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 2008-07-22 09:19:03 UTC\r
+Last updated 2008-08-16 10:22:58 UTC\r
</div>\r
</div>\r
</body>\r
--------
[verse]
'git am' [--signoff] [--keep] [--utf8 | --no-utf8]
- [--3way] [--interactive] [--binary]
+ [--3way] [--interactive]
[--whitespace=<option>] [-C<n>] [-p<n>]
[<mbox> | <Maildir>...]
'git am' (--skip | --resolved | --abort)
it is supposed to apply to, and we have those blobs
available locally.
--b::
---binary::
- Pass `--allow-binary-replacement` flag to 'git-apply'
- (see linkgit:git-apply[1]).
-
--whitespace=<option>::
This flag is passed to the 'git-apply' (see linkgit:git-apply[1])
program that applies
</p>\r
</dd>\r
<dt>\r
+pager.<cmd>\r
+</dt>\r
+<dd>\r
+<p>\r
+ Allows to set your own pager preferences for each command, overriding\r
+ the default. If <tt>--pager</tt> or <tt>--no-pager</tt> is specified on the command\r
+ line, it takes precedence over this option.\r
+</p>\r
+</dd>\r
+<dt>\r
pull.octopus\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 2008-08-06 06:19:08 UTC\r
+Last updated 2008-08-16 10:22:58 UTC\r
</div>\r
</div>\r
</body>\r
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
<div class="verseblock">\r
-<div class="content"><em>git stash</em> list\r
-<em>git stash</em> (show | apply | drop | pop ) [<stash>]\r
+<div class="content"><em>git stash</em> list [<options>]\r
+<em>git stash</em> (show | drop | pop ) [<stash>]\r
+<em>git stash</em> apply [--index] [<stash>]\r
<em>git stash</em> branch <branchname> [<stash>]\r
-<em>git stash</em> [save [<message>]]\r
-<em>git stash</em> clear</div></div>\r
+<em>git stash</em> [save [--keep-index] [<message>]]\r
+<em>git stash</em> clear\r
+<em>git stash</em> create</div></div>\r
</div>\r
<h2 id="_description">DESCRIPTION</h2>\r
<div class="sectionbody">\r
<tt>stash@{0}</tt> is assumed. See also <tt>apply</tt>.\r
</p>\r
</dd>\r
+<dt>\r
+create\r
+</dt>\r
+<dd>\r
+<p>\r
+ Create a stash (which is a regular commit object) and return its\r
+ object name, without storing it anywhere in the ref namespace.\r
+</p>\r
+</dd>\r
</dl></div>\r
</div>\r
<h2 id="_discussion">DISCUSSION</h2>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 2008-07-14 03:12:31 UTC\r
+Last updated 2008-08-16 10:22:58 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
[verse]
-'git stash' list
-'git stash' (show | apply | drop | pop ) [<stash>]
+'git stash' list [<options>]
+'git stash' (show | drop | pop ) [<stash>]
+'git stash' apply [--index] [<stash>]
'git stash' branch <branchname> [<stash>]
-'git stash' [save [<message>]]
+'git stash' [save [--keep-index] [<message>]]
'git stash' clear
+'git stash' create
DESCRIPTION
-----------
of the current working tree state. When no `<stash>` is given,
`stash@\{0}` is assumed. See also `apply`.
+create::
+
+ Create a stash (which is a regular commit object) and return its
+ object name, without storing it anywhere in the ref namespace.
+
DISCUSSION
----------