Skip to content

Commit

Permalink
Merge GIT 1.5.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Mar 14, 2007
2 parents c47e6a4 + 3d4e193 commit 803527f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions Documentation/RelNotes-1.5.0.4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
GIT v1.5.0.4 Release Notes
==========================

Fixes since v1.5.0.3
--------------------

* Bugfixes

- git.el does not add duplicate sign-off lines.

- git-commit shows the full stat of the resulting commit, not
just about the files in the current directory, when run from
a subdirectory.

- "git-checkout -m '@{8 hours ago}'" had a funny failure from
eval; fixed.

- git-gui updates.

* Documentation updates

* User manual updates


2 changes: 1 addition & 1 deletion Documentation/git-config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ OPTIONS
Remove the line matching the key from config file.

--unset-all::
Remove all matching lines from config file.
Remove all lines matching the key from config file.

-l, --list::
List all variables set in config file.
Expand Down
2 changes: 1 addition & 1 deletion git-checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ else
work=`git write-tree` &&
git read-tree --reset -u $new || exit

eval GITHEAD_$new=${new_name:-${branch:-$new}} &&
eval GITHEAD_$new='${new_name:-${branch:-$new}}' &&
eval GITHEAD_$work=local &&
export GITHEAD_$new GITHEAD_$work &&
git merge-recursive $old -- $new $work
Expand Down

0 comments on commit 803527f

Please sign in to comment.