-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into db/fetch-pack
There's a number of tricky conflicts between master and this topic right now due to the rewrite of builtin-push. Junio must have handled these via rerere; I'd rather not deal with them again so I'm pre-merging master into the topic. Besides this topic somehow started to depend on the strbuf series that was in next, but is now in master. It no longer compiles on its own without the strbuf API. * master: (184 commits) Whip post 1.5.3.4 maintenance series into shape. Minor usage update in setgitperms.perl manual: use 'URL' instead of 'url'. manual: add some markup. manual: Fix example finding commits referencing given content. Fix wording in push definition. Fix some typos, punctuation, missing words, minor markup. manual: Fix or remove em dashes. Add a --dry-run option to git-push. Add a --dry-run option to git-send-pack. Fix in-place editing functions in convert.c instaweb: support for Ruby's WEBrick server instaweb: allow for use of auto-generated scripts Add 'git-p4 commit' as an alias for 'git-p4 submit' hg-to-git speedup through selectable repack intervals git-svn: respect Subversion's [auth] section configuration values gtksourceview2 support for gitview fix contrib/hooks/post-receive-email hooks.recipients error message Support cvs via git-shell rebase -i: use diff plumbing instead of porcelain ... Conflicts: Makefile builtin-push.c rsh.c
- Loading branch information
Showing
164 changed files
with
4,642 additions
and
2,998 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
GIT v1.5.3.3 Release Notes | ||
========================== | ||
|
||
Fixes since v1.5.3.2 | ||
-------------------- | ||
|
||
* git-quiltimport did not like it when a patch described in the | ||
series file does not exist. | ||
|
||
* p4 importer missed executable bit in some cases. | ||
|
||
* The default shell on some FreeBSD did not execute the | ||
argument parsing code correctly and made git unusable. | ||
|
||
* git-svn incorrectly spawned pager even when the user user | ||
explicitly asked not to. | ||
|
||
* sample post-receive hook overquoted the envelope sender | ||
value. | ||
|
||
* git-am got confused when the patch contained a change that is | ||
only about type and not contents. | ||
|
||
* git-mergetool did not show our and their version of the | ||
conflicted file when started from a subdirectory of the | ||
project. | ||
|
||
* git-mergetool did not pass correct options when invoking diff3. | ||
|
||
* git-log sometimes invoked underlying "diff" machinery | ||
unnecessarily. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
GIT v1.5.3.4 Release Notes | ||
========================== | ||
|
||
Fixes since v1.5.3.3 | ||
-------------------- | ||
|
||
* Change to "git-ls-files" in v1.5.3.3 that was introduced to support | ||
partial commit of removal better had a segfaulting bug, which was | ||
diagnosed and fixed by Keith and Carl. | ||
|
||
* Performance improvements for rename detection has been backported | ||
from the 'master' branch. | ||
|
||
* "git-for-each-ref --format='%(numparent)'" was not working | ||
correctly at all, and --format='%(parent)' was not working for | ||
merge commits. | ||
|
||
* Sample "post-receive-hook" incorrectly sent out push | ||
notification e-mails marked as "From: " the committer of the | ||
commit that happened to be at the tip of the branch that was | ||
pushed, not from the person who pushed. | ||
|
||
* "git-remote" did not exit non-zero status upon error. | ||
|
||
* "git-add -i" did not respond very well to EOF from tty nor | ||
bogus input. | ||
|
||
* "git-rebase -i" squash subcommand incorrectly made the | ||
author of later commit the author of resulting commit, | ||
instead of taking from the first one in the squashed series. | ||
|
||
* "git-stash apply --index" was not documented. | ||
|
||
* autoconfiguration learned that "ar" command is found as "gas" on | ||
some systems. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
GIT v1.5.3.5 Release Notes | ||
========================== | ||
|
||
Fixes since v1.5.3.4 | ||
-------------------- | ||
|
||
* "git-config" silently ignored options after --list; now it wilh | ||
error out with a usage message. | ||
|
||
* "git-config --file" failed if the argument used a relative path | ||
as it changed directories before opening the file. | ||
|
||
* "git-add -i" did not handle single line hunks correctly. | ||
|
||
* "git-log --follow" did not work unless diff generation (e.g. -p) | ||
was also requested. | ||
|
||
* "git-log" printed extra newlines between commits when a diff | ||
was generated internally (e.g. -S or --follow) but not displayed. | ||
|
||
* Documention updates for supported (but previously undocumented) | ||
options of "git-archive" and "git-reflog". | ||
|
||
* "make clean" no longer deletes the configure script that ships | ||
with the git tarball, making multiple architecture builds easier. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.