Skip to content

Commit bbcefff

Browse files
committed
Sync with maint
Signed-off-by: Junio C Hamano <[email protected]>
2 parents 2c380e7 + c2e8e4b commit bbcefff

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

Documentation/RelNotes/2.2.2.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Git v2.2.2 Release Notes
2+
========================
3+
4+
Fixes since v2.2.1
5+
------------------
6+
7+
* "git checkout $treeish $path", when $path in the index and the
8+
working tree already matched what is in $treeish at the $path,
9+
still overwrote the $path unnecessarily.
10+
11+
* "git config --get-color" did not parse its command line arguments
12+
carefully.
13+
14+
* open() emulated on Windows platforms did not give EISDIR upon
15+
an attempt to open a directory for writing.
16+
17+
* A few code paths used abs() when they should have used labs() on
18+
long integers.
19+
20+
* "gitweb" used to depend on a behaviour recent CGI.pm deprecated.
21+
22+
* "git init" (hence "git clone") initialized the per-repository
23+
configuration file .git/config with x-bit by mistake.
24+
25+
* Git 2.0 was supposed to make the "simple" mode for the default of
26+
"git push", but it didn't.
27+
28+
* "Everyday" document had a broken link.
29+
30+
* The build procedure did not bother fixing perl and python scripts
31+
when NO_PERL and NO_PYTHON build-time configuration changed.
32+
33+
Also contains typofixes, documentation updates and trivial code clean-ups.

builtin/clean.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ static void print_highlight_menu_stuff(struct menu_stuff *stuff, int **chosen)
321321

322322
switch (stuff->type) {
323323
default:
324-
die("Bad type of menu_staff when print menu");
324+
die("Bad type of menu_stuff when print menu");
325325
case MENU_STUFF_TYPE_MENU_ITEM:
326326
menu_item = (struct menu_item *)stuff->stuff;
327327
for (i = 0; i < stuff->nr; i++, menu_item++) {

0 commit comments

Comments
 (0)