@@ -18,14 +18,18 @@ Updates since v1.7.5
1818 * "git blame" learned "--abbrev[=<n>]" option to control the minimum
1919 number of hexdigits shown for commit object names.
2020
21- * "git cvsimport" learned that CVSNT stores its password file in a
22- location different from the traditional CVS.
23-
2421 * "git diff -C -C" used to disable the rename detection entirely when
2522 there are too many copy candidate paths in the tree; now it falls
2623 back to "-C" when doing so would keep the copy candidate paths
2724 under the rename detection limit.
2825
26+ * "git diff" and its family of commands learned --dirstat=0 to show
27+ directories that contribute less than 0.1% of changes.
28+
29+ * "git diff" and its family of commands learned --dirstat=lines mode to
30+ assess damage to the directory based on number of lines in the patch
31+ output, not based on the similarity numbers.
32+
2933 * "git format-patch" learned "--quiet" option to suppress the output of
3034 the names of generated files.
3135
@@ -53,9 +57,6 @@ Updates since v1.7.5
5357 the tarball generation; snapshot from the same tree should result in
5458 a same tarball.
5559
56- * "git-p4" (in contrib) learned to merge a file that was added on both
57- branches differently by using 2-way merge.
58-
5960Also contains various documentation updates and minor miscellaneous
6061changes.
6162
@@ -70,17 +71,14 @@ included in this release.
7071 one of them was given to the editor.
7172 (merge jc/maint-add-p-overlapping-hunks later)
7273
74+ * "git add -u" did not resolve a conflict where our history deleted and
75+ their history modified the same file, and the working tree resolved to
76+ keep a file.
77+ (merge jc/fix-add-u-unmerged later)
78+
7379 * "git config" used to choke with an insanely long line.
7480 (merge ef/maint-strbuf-init later)
7581
76- * "git diff-files" did not show the mode information from the working
77- tree side of an unmerged path correctly.
78- (merge jc/fix-diff-files-unmerged later)
79-
80- * "git diff -M --cached" used to use unmerged path as a possible rename
81- source candidate, which made no sense.
82- (merge mz/maint-rename-unmerged later)
83-
8482 * "git format-patch" when run with "--quiet" option used to produce a
8583 nonsense result that consists of alternating empty output.
8684 (merge early part of cn/format-patch-quiet later)
@@ -95,27 +93,15 @@ included in this release.
9593 configuration variables such as merge.ff, merge.log, etc.
9694 (merge jc/maint-branch-mergeoptions later)
9795
98- * "git merge-one-file" did not honor GIT_WORK_TREE settings when
99- handling a "both sides added, differently" conflict.
100- (merge jk/merge-one-file-working-tree later)
101-
10296 * "git mergetool" did not handle conflicted submoudules gracefully.
10397 (merge jm/mergetool-submodules later)
10498
105- * "git rebase -i -p" failed to preserve the history when there is a
106- redundant merge created with the --no-ff option.
107- (merge aw/maint-rebase-i-p-no-ff later)
108-
109- * "git stash -p --no-keep-index" and "git stash --no-keep-index -p" now
110- mean the same thing.
111- (merge dm/stash-k-i-p later)
112-
113- * "git upload-pack" (hence "git push" over git native protocol) had a
114- subtle race condition that could lead to a deadlock.
115- (merge jk/maint-upload-pack-shallow later)
99+ * "git send-pack" (hence "git push") over smalt-HTTP protocol could
100+ deadlock when the client side pack-object died early.
101+ (merge js/maint-send-pack-stateless-rpc-deadlock-fix later)
116102
117103---
118104exec >/var/tmp/1
119105echo O=$(git describe master)
120- O=v1.7.5.1-248-ga579498
106+ O=v1.7.5.1-288-ge4ae6ef
121107git shortlog --no-merges ^maint ^$O master
0 commit comments