i18n: git-bisect bisect_next_check "You need to" message
[git/mjg.git] / Documentation / RelNotes / 1.7.6.txt
blob8554918cf48a31866e55c85d7c07838524c380f4
1 Git v1.7.6 Release Notes (draft)
2 ========================
4 Updates since v1.7.5
5 --------------------
7  * Various git-svn updates.
9  * Clean-up of the C part of i18n (but not l10n---please wait)
10    continues.
12  * Processes spawned by "[alias] <name> = !process" in the configuration
13    can inspect GIT_PREFIX environment variable to learn where in the
14    working tree the original command was invoked.
16  * "git blame" learned "--abbrev[=<n>]" option to control the minimum
17    number of hexdigits shown for commit object names.
19  * "git cvsimport" learned that CVSNT stores its password file in a
20    location different from the traditional CVS.
22  * "git diff -C -C" used to disable the rename detection entirely when
23    there are too many copy candidate paths in the tree; now it falls
24    back to "-C" when doing so would keep the copy candidate paths
25    under the rename detection limit.
27  * "git format-patch" learned "--quiet" option to suppress the output of
28    the names of generated files.
30  * "git format-patch" quotes people's names when it has RFC822 special
31    characters in it, e.g. "Junio C. Hamano" <jch@example.com>.  Earlier
32    it was up to the user to do this when using its output.
34  * "git log" and friends learned a new "--notes" option to replace the
35    "--show-notes" option.  Unlike "--show-notes", "--notes=<ref>" does
36    not imply showing the default notes.
38  * "git merge" learned "-" as a short-hand for "the previous branch", just
39    like the way "git checkout -" works.
41  * "git merge-one-file" learned to honor GIT_WORK_TREE settings when
42    handling "both sides added, differently" conflict.
44  * "git rev-list --count" used with "--cherry-mark" counts the cherry-picked
45    commits separately, producing more a useful output.
47  * "git submodule update" learned "--force" option to get rid of local
48    changes in submodules and replace them with the up-to-date version.
50  * Compressed tarball gitweb generates is made without the timestamp of
51    the tarball generation; snapshot from the same tree should result in
52    a same tarball.
54  * "git-p4" (in contrib) learned to merge a file that was added on both
55    branches differently by using 2-way merge.
57 Also contains various documentation updates and minor miscellaneous
58 changes.
61 Fixes since v1.7.5
62 ------------------
64 Unless otherwise noted, all the fixes in 1.7.5.X maintenance track are
65 included in this release.
67  * "git config" used to choke with an insanely long line.
68    (merge ef/maint-strbuf-init later)
70  * "git diff-files" did not show the mode information from the working
71    tree side of an unmerged path correctly.
72    (merge jc/fix-diff-files-unmerged later)
74  * "git diff -M --cached" used to use unmerged path as a possible rename
75    source candidate, which made no sense.
76    (merge mz/maint-rename-unmerged later)
78  * "git format-patch" when run with "--quiet" option used to produce a
79    nonsense result that consists of alternating empty output.
80    (merge early part of cn/format-patch-quiet later)
82  * "git format-patch" did not quote RFC822 special characters in the
83    email address (e.g From: Junio C. Hamano <jch@example.com>, not
84    From: "Junio C. Hamano" <jch@example.com>).
85    (merge jk/format-patch-quote-special-in-from later)
87  * "git mergetool" did not handle conflicted submoudules gracefully.
88    (merge jm/mergetool-submodules later)
90  * "git rebase -i -p" failed to preserve the history when there is a
91    redundant merge created with the --no-ff option.
92    (merge aw/maint-rebase-i-p-no-ff later)
94  * "git stash -p --no-keep-index" and "git stash --no-keep-index -p" now
95    mean the same thing.
96    (merge dm/stash-k-i-p later)
98  * "git upload-pack" (hence "git push" over git native protocol) had a
99    subtle race condition that could lead to a deadlock.
100    (merge jk/maint-upload-pack-shallow later)
103 exec >/var/tmp/1
104 echo O=$(git describe master)
105 O=v1.7.5.1-216-g3970fc5
106 git shortlog --no-merges ^maint ^$O master