Skip to content

Commit

Permalink
GIT 1.5.3
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Sep 2, 2007
1 parent 4e837a9 commit 86bab96
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions Documentation/RelNotes-1.5.3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ Updates since v1.5.2
- "git send-email" can be told not to thread the messages when
sending out more than one patches.

- "git send-email" can also be told how to find whom to cc the
message to for each message via --cc-cmd.

- "git config" learned NUL terminated output format via -z to
help scripts.

Expand All @@ -148,15 +151,23 @@ Updates since v1.5.2
- "git clone" uses -l (hardlink files under .git) by default when
cloning locally.

- URL used for "git clone" and friends can specify nonstandard SSH port
by using sh://host:port/path/to/repo syntax.

- "git bundle create" can now create a bundle without negative refs,
i.e. "everything since the beginning up to certain points".

- "git diff" (but not the plumbing level "git diff-tree") now
recursively descends into trees by default.

- "git diff" does not show differences that come only from
stat-dirtiness in the form of "diff --git" header anymore. When
generating a textual diff, it shows a warning message at the end.
stat-dirtiness in the form of "diff --git" header anymore.
It runs "update-index --refresh" silently as needed.

- "git tag -l" used to match tags by globbing its parameter as if it
has wildcard '*' on both ends, which made "git tag -l gui" to match
tag 'gitgui-0.7.0'; this was very annoying. You now have to add
asterisk on the sides you want to wildcard yourself.

- The editor to use with many interactive commands can be
overridden with GIT_EDITOR environment variable, or if it
Expand Down Expand Up @@ -327,6 +338,13 @@ this release, unless otherwise noted.
- "gitweb" had trouble handling non UTF-8 text with older
Encode.pm Perl module.

- "git svn" misparsed the data from the commits in the repository when
the user had "color.diff = true" in the configuration. This has been
fixed.

- There was a case where "git svn dcommit" clobbered changes made on the
SVN side while committing multiple changes.

- "git-write-tree" had a bad interaction with racy-git avoidance and
gitattributes mechanisms.

Expand All @@ -345,8 +363,4 @@ this release, unless otherwise noted.
inconsistency was introduced somewhere in v1.3.0 series but now has
been corrected.

--
exec >/var/tmp/1
O=v1.5.3-rc7-15-ga65f200
echo O=`git describe refs/heads/master`
git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
- "git rebase -m" incorrectly displayed commits that were skipped.

0 comments on commit 86bab96

Please sign in to comment.