File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,24 @@ Git v1.8.2.2 Release Notes
44Fixes since v1.8.2.1
55--------------------
66
7+ * "git diff --diff-algorithm=algo" was understood by the command line
8+ parser, but "git diff --diff-algorithm algo" was not.
9+
10+ * "git log -S/-G" started paying attention to textconv filter, but
11+ there was no way to disable this. Make it honor --no-textconv
12+ option.
13+
14+ * "git merge $(git rev-parse v1.8.2)" behaved quite differently from
15+ "git merge v1.8.2", as if v1.8.2 were written as v1.8.2^0 and did
16+ not pay much attention to the annotated tag payload. Make the code
17+ notice the type of the tag object, in addition to the dwim_ref()
18+ based classification the current code uses (i.e. the name appears
19+ in refs/tags/) to decide when to special case merging of tags.
20+
21+ * "git cherry-pick" and "git revert" can take more than one commit
22+ on the command line these days, but it was not mentioned on the usage
23+ text.
24+
725 * Perl scripts like "git-svn" closed (not redirecting to /dev/null)
826 the standard error stream, which is not a very smart thing to do.
927 Later open may return file descriptor #2 for unrelated purpose, and
Original file line number Diff line number Diff line change 1919 */
2020
2121static const char * const revert_usage [] = {
22- N_ ("git revert [options] <commit-ish>" ),
22+ N_ ("git revert [options] <commit-ish>... " ),
2323 N_ ("git revert <subcommand>" ),
2424 NULL
2525};
2626
2727static const char * const cherry_pick_usage [] = {
28- N_ ("git cherry-pick [options] <commit-ish>" ),
28+ N_ ("git cherry-pick [options] <commit-ish>... " ),
2929 N_ ("git cherry-pick <subcommand>" ),
3030 NULL
3131};
Original file line number Diff line number Diff line change @@ -1184,13 +1184,6 @@ _git_commit ()
11841184 ;;
11851185 esac
11861186
1187- case " $prev " in
1188- -c|-C)
1189- __gitcomp_nl " $( __git_refs) " " " " ${cur} "
1190- return
1191- ;;
1192- esac
1193-
11941187 case " $cur " in
11951188 --cleanup=* )
11961189 __gitcomp " default strip verbatim whitespace
You can’t perform that action at this time.
0 commit comments