Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit b7fbce0

Browse files
committed
The tenth batch of topics
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8a3500c commit b7fbce0

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

Documentation/RelNotes/1.7.11.txt

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ UI, Workflows & Features
2525
tracking. Also "branch" learned the "-q"uiet option to squelch
2626
informational message.
2727

28+
* Your build platform may support hardlinks but you may prefer not to
29+
use them, e.g. when installing to DESTDIR to make a tarball and
30+
untarring on a filesystem that has poor support for hardlinks.
31+
There is a Makefile option NO_INSTALL_HARDLINKS for you.
32+
2833
* The smart-http backend used to always override GIT_COMMITTER_*
2934
variables with REMOTE_USER and REMOTE_ADDR, but these variables are
3035
now preserved when set.
3136

32-
* "include.path" mechanism of the configuration files learned to
33-
understand "~/path" and "~user/path".
34-
3537
* "git am" learned the "--include" option, which is an opposite of
3638
existing the "--exclude" option.
3739

@@ -83,6 +85,9 @@ Performance and Internal Implementation (please report possible regressions)
8385
* An experimental "version 4" format of the index file has been
8486
introduced to reduce on-disk footprint and I/O overhead.
8587

88+
* "git archive" learned to produce its output without reading the
89+
blob object it writes out in memory in its entirety.
90+
8691
* The code to compute hash values for lines used by the internal diff
8792
engine was optimized on little-endian machines, using the same
8893
trick the kernel folks came up with.
@@ -124,6 +129,22 @@ Unless otherwise noted, all the fixes since v1.7.10 in the maintenance
124129
releases are contained in this release (see release notes to them for
125130
details).
126131

132+
* When checking out another commit from an already detached state, we
133+
used to report all commits that are not reachable from any of the
134+
refs as lossage, but some of them might be reachable from the new
135+
HEAD, and there is no need to warn about them.
136+
(merge 5d88639 js/checkout-detach-count later to maint).
137+
138+
* Some time ago, "git clone" lost the progress output for its
139+
"checkout" phase; when run without any "--quiet" option, it should
140+
give progress to the lengthy operation.
141+
(merge 8f63da1 ef/maint-clone-progress-fix later to maint).
142+
143+
* "git status --porcelain" ignored "--branch" option by mistake. The
144+
output for "git status --branch -z" was also incorrect and did not
145+
terminate the record for the current branch name with NUL as asked.
146+
(merge d4a6bf1 jk/maint-status-porcelain-z-b later to maint).
147+
127148
* "git diff --stat" used to fully count a binary file with modified
128149
execution bits whose contents is unmodified, which was not quite
129150
right.
@@ -132,14 +153,3 @@ details).
132153
NUL. The fix is not entirely correct when the output also asks for
133154
--patch and/or --stat, though.
134155
(merge fafd382 jk/maint-tformat-with-z later to maint).
135-
136-
* "git push" over smart-http lost progress output a few releases ago.
137-
(merge e304aeb jk/maint-push-progress later to maint).
138-
139-
* A contrib script "rerere-train" did not work out of the box unless
140-
user futzed with her $PATH.
141-
(merge 53876fc jc/rerere-train later to maint).
142-
143-
* "log --graph" was not very friendly with "--stat" option and its
144-
output had line breaks at wrong places.
145-
(merge bafa16e lp/diffstat-with-graph later to maint).

0 commit comments

Comments
 (0)