11Git v1.7.10 Release Notes
22=========================
33
4+ Compatibility Notes
5+ -------------------
6+
7+ * From this release on, the "git merge" command in an interactive
8+ session will start an editor when it automatically resolves the
9+ merge for the user to explain the resulting commit, just like the
10+ "git commit" command does when it wasn't given a commit message.
11+
12+ If you have a script that runs "git merge" and keeps its standard
13+ input and output attached to the user's terminal, and if you do not
14+ want the user to explain the resulting merge commits, you can
15+ export GIT_MERGE_AUTOEDIT environment variable set to "no", like
16+ this:
17+
18+ #!/bin/sh
19+ GIT_MERGE_AUTOEDIT=no
20+ export GIT_MERGE_AUTOEDIT
21+
22+ to disable this behaviour (if you want your users to explain their
23+ merge commits, you do not have to do anything). Alternatively, you
24+ can give the "--no-edit" option to individual invocations of the
25+ "git merge" command if you know everybody who uses your script has
26+ Git v1.7.8 or newer.
27+
28+
429Updates since v1.7.9
530--------------------
631
@@ -37,19 +62,30 @@ UI, Workflows & Features
3762 lines are taken from the postimage, in order to make it easier to
3863 view the output.
3964
65+ * "git diff --stat" learned to adjust the width of the output on
66+ wider terminals, and give more columns to pathnames as needed.
67+
4068 * "diff-highlight" filter (in contrib/) was updated to produce more
4169 aesthetically pleasing output.
4270
4371 * "fsck" learned "--no-dangling" option to omit dangling object
4472 information.
4573
74+ * "git log -G" learned to pay attention to the "-i" option and can
75+ find patch hunks that introduce or remove a string that matches the
76+ given pattern ignoring the case.
77+
4678 * "git merge" in an interactive session learned to spawn the editor
4779 by default to let the user edit the auto-generated merge message,
4880 to encourage people to explain their merges better. Legacy scripts
4981 can export GIT_MERGE_AUTOEDIT=no to retain the historical behavior.
5082 Both "git merge" and "git pull" can be given --no-edit from the
5183 command line to accept the auto-generated merge message.
5284
85+ * The advise message given when the user didn't give enough clue on
86+ what to merge to "git pull" and "git merge" has been updated to
87+ be more concise and easier to understand.
88+
5389 * "git push" learned the "--prune" option, similar to "git fetch".
5490
5591 * "git symbolic-ref" learned the "--short" option to abbreviate the
@@ -72,7 +108,7 @@ UI, Workflows & Features
72108
73109Foreign Interface
74110
75- * Improved handling of views, labels and branches in git-p4 (in contrib).
111+ * Improved handling of views, labels and branches in " git-p4" (in contrib).
76112
77113 * "git-p4" (in contrib) suffered from unnecessary merge conflicts when
78114 p4 expanded the embedded $RCS$-like keywords; it can be now told to
@@ -83,11 +119,13 @@ Foreign Interface
83119 * "vcs-svn"/"svn-fe" learned to read dumps with svn-deltas and
84120 support incremental imports.
85121
122+ * "git difftool/mergetool" learned to drive DeltaWalker.
123+
86124Performance
87125
88- * During "git upload-pack" in response to "git fetch", unnecessary calls
89- to parse_object() have been eliminated, to help performance in
90- repositories with excessive number of refs.
126+ * Unnecessary calls to parse_object() "git upload-pack" makes in
127+ response to "git fetch", have been eliminated, to help performance
128+ in repositories with excessive number of refs.
91129
92130Internal Implementation (please report possible regressions)
93131
@@ -108,6 +146,9 @@ Internal Implementation (please report possible regressions)
108146 * t/Makefile is adjusted to prevent newer versions of GNU make from
109147 running tests in seemingly random order.
110148
149+ * The code to check if a path points at a file beyond a symbolic link
150+ has been restructured to be thread-safe.
151+
111152Also contains minor documentation updates and code clean-ups.
112153
113154
@@ -118,6 +159,17 @@ Unless otherwise noted, all the fixes since v1.7.9 in the maintenance
118159releases are contained in this release (see release notes to them for
119160details).
120161
162+ * "git bundle" did not record boundary commits correctly when there
163+ are many of them.
164+ (merge efe4be1 tr/maint-bundle-boundary later to maint).
165+
166+ * "git diff-index" and its friends at the plumbing level showed the
167+ "diff --git" header and nothing else for a path whose cached stat
168+ info is dirty without actual difference when asked to produce a
169+ patch. This was a longstanding bug that we could have fixed long
170+ time ago.
171+ (merge b3f01ff jc/maint-diff-patch-header later to maint).
172+
121173 * The code to synthesize the fake ancestor tree used by 3-way merge
122174 fallback in "git am" was not prepared to read a patch created with
123175 a non-standard -p<num> value.
@@ -129,7 +181,7 @@ details).
129181
130182---
131183exec >/var/tmp/1
132- O=v1.7.9.2-383-gb8b5290
184+ O=v1.7.9.3-366-g1e4d087
133185echo O=$(git describe)
134186git log --first-parent --oneline ^maint $O..
135187echo
0 commit comments