Tells `git-apply` how to handle whitespaces, in the same way
as the '--whitespace' option. See gitlink:git-apply[1].
+branch.autosetupmerge::
+ Tells `git-branch` and `git-checkout` to setup new branches
+ so that gitlink:git-pull[1] will appropriately merge from that
+ remote branch. Note that even if this option is not set,
+ this behavior can be chosen per-branch using the `--track`
+ and `--no-track` options. This option defaults to false.
+
branch.<name>.remote::
When in branch <name>, it tells `git fetch` which remote to fetch.
If this option is not given, `git fetch` defaults to remote "origin".
</p>\r
</dd>\r
<dt>\r
+branch.autosetupmerge\r
+</dt>\r
+<dd>\r
+<p>\r
+ Tells <tt>git-branch</tt> and <tt>git-checkout</tt> to setup new branches\r
+ so that <a href="git-pull.html">git-pull(1)</a> will appropriately merge from that\r
+ remote branch. Note that even if this option is not set,\r
+ this behavior can be chosen per-branch using the <tt>--track</tt>\r
+ and <tt>--no-track</tt> options. This option defaults to false.\r
+</p>\r
+</dd>\r
+<dt>\r
branch.<name>.remote\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 22-May-2007 07:23:05 UTC\r
+Last updated 24-May-2007 06:59:45 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-ls-tree</em> [-d] [-r] [-t] [-z]\r
+<div class="content"><em>git-ls-tree</em> [-d] [-r] [-t] [-l] [-z]\r
[--name-only] [--name-status] [--full-name] [--abbrev=[<n>]]\r
<tree-ish> [paths…]</div></div>\r
</div>\r
</p>\r
</dd>\r
<dt>\r
+-l\r
+</dt>\r
+<dt>\r
+--long\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show object size of blob (file) entries.\r
+</p>\r
+</dd>\r
+<dt>\r
-z\r
</dt>\r
<dd>\r
</div></div>\r
<p>When the <tt>-z</tt> option is not used, TAB, LF, and backslash characters\r
in pathnames are represented as <tt>\t</tt>, <tt>\n</tt>, and <tt>\\</tt>, respectively.</p>\r
+<p>When the <tt>-l</tt> option is used, format changes to</p>\r
+<div class="literalblock">\r
+<div class="content">\r
+<pre><tt><mode> SP <type> SP <object> SP <object size> TAB <file></tt></pre>\r
+</div></div>\r
+<p>Object size identified by <object> is given in bytes, and right-justified\r
+with minimum width of 7 characters. Object size is given only for blobs\r
+(file) entries; for other entries <tt>-</tt> character is used in place of size.</p>\r
</div>\r
<h2>Author</h2>\r
<div class="sectionbody">\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 04-Apr-2007 18:33:49 UTC\r
+Last updated 23-May-2007 21:46:09 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
[verse]
-'git-ls-tree' [-d] [-r] [-t] [-z]
+'git-ls-tree' [-d] [-r] [-t] [-l] [-z]
[--name-only] [--name-status] [--full-name] [--abbrev=[<n>]]
<tree-ish> [paths...]
Show tree entries even when going to recurse them. Has no effect
if '-r' was not passed. '-d' implies '-t'.
+-l::
+--long::
+ Show object size of blob (file) entries.
+
-z::
\0 line termination on output.
When the `-z` option is not used, TAB, LF, and backslash characters
in pathnames are represented as `\t`, `\n`, and `\\`, respectively.
+When the `-l` option is used, format changes to
+
+ <mode> SP <type> SP <object> SP <object size> TAB <file>
+
+Object size identified by <object> is given in bytes, and right-justified
+with minimum width of 7 characters. Object size is given only for blobs
+(file) entries; for other entries `-` character is used in place of size.
+
Author
------