Skip to content

Commit 803527f

Browse files
author
Junio C Hamano
committed
Merge GIT 1.5.0.4
2 parents c47e6a4 + 3d4e193 commit 803527f

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

Documentation/RelNotes-1.5.0.4.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
GIT v1.5.0.4 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.3
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- git.el does not add duplicate sign-off lines.
10+
11+
- git-commit shows the full stat of the resulting commit, not
12+
just about the files in the current directory, when run from
13+
a subdirectory.
14+
15+
- "git-checkout -m '@{8 hours ago}'" had a funny failure from
16+
eval; fixed.
17+
18+
- git-gui updates.
19+
20+
* Documentation updates
21+
22+
* User manual updates
23+
24+

Documentation/git-config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ OPTIONS
8686
Remove the line matching the key from config file.
8787

8888
--unset-all::
89-
Remove all matching lines from config file.
89+
Remove all lines matching the key from config file.
9090

9191
-l, --list::
9292
List all variables set in config file.

git-checkout.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ else
205205
work=`git write-tree` &&
206206
git read-tree --reset -u $new || exit
207207

208-
eval GITHEAD_$new=${new_name:-${branch:-$new}} &&
208+
eval GITHEAD_$new='${new_name:-${branch:-$new}}' &&
209209
eval GITHEAD_$work=local &&
210210
export GITHEAD_$new GITHEAD_$work &&
211211
git merge-recursive $old -- $new $work

0 commit comments

Comments
 (0)