-
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 js/diff-ni
* master: (201 commits) Documentation: link in 1.5.0.2 material to the top documentation page. Documentation: document remote.<name>.tagopt GIT 1.5.0.2 git-remote: support remotes with a dot in the name Documentation: describe "-f/-t/-m" options to "git-remote add" diff --cc: fix display of symlink conflicts during a merge. merge-recursive: fix longstanding bug in merging symlinks merge-index: fix longstanding bug in merging symlinks diff --cached: give more sensible error message when HEAD is yet to be created. Update tests to use test-chmtime Add test-chmtime: a utility to change mtime on files Add Release Notes to prepare for 1.5.0.2 Allow arbitrary number of arguments to git-pack-objects rerere: do not deal with symlinks. rerere: do not skip two conflicted paths next to each other. Don't modify CREDITS-FILE if it hasn't changed. diff-patch: Avoid emitting double-slashes in textual patch. Reword git-am 3-way fallback failure message. Limit filename for format-patch core.legacyheaders: Use the description used in RelNotes-1.5.0 ...
- Loading branch information
Showing
109 changed files
with
6,794 additions
and
2,980 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
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,65 @@ | ||
GIT v1.5.0.2 Release Notes | ||
========================== | ||
|
||
Fixes since v1.5.0.1 | ||
-------------------- | ||
|
||
* Bugfixes | ||
|
||
- Automated merge conflict handling when changes to symbolic | ||
links conflicted were completely broken. The merge-resolve | ||
strategy created a regular file with conflict markers in it | ||
in place of the symbolic link. The default strategy, | ||
merge-recursive was even more broken. It removed the path | ||
that was pointed at by the symbolic link. Both of these | ||
problems have been fixed. | ||
|
||
- 'git diff maint master next' did not correctly give combined | ||
diff across three trees. | ||
|
||
- 'git fast-import' portability fix for Solaris. | ||
|
||
- 'git show-ref --verify' without arguments did not error out | ||
but segfaulted. | ||
|
||
- 'git diff :tracked-file `pwd`/an-untracked-file' gave an extra | ||
slashes after a/ and b/. | ||
|
||
- 'git format-patch' produced too long filenames if the commit | ||
message had too long line at the beginning. | ||
|
||
- Running 'make all' and then without changing anything | ||
running 'make install' still rebuilt some files. This | ||
was inconvenient when building as yourself and then | ||
installing as root (especially problematic when the source | ||
directory is on NFS and root is mapped to nobody). | ||
|
||
- 'git-rerere' failed to deal with two unconflicted paths that | ||
sorted next to each other. | ||
|
||
- 'git-rerere' attempted to open(2) a symlink and failed if | ||
there was a conflict. Since a conflicting change to a | ||
symlink would not benefit from rerere anyway, the command | ||
now ignores conflicting changes to symlinks. | ||
|
||
- 'git-repack' did not like to pass more than 64 arguments | ||
internally to underlying 'rev-list' logic, which made it | ||
impossible to repack after accumulating many (small) packs | ||
in the repository. | ||
|
||
- 'git-diff' to review the combined diff during a conflicted | ||
merge were not reading the working tree version correctly | ||
when changes to a symbolic link conflicted. It should have | ||
read the data using readlink(2) but read from the regular | ||
file the symbolic link pointed at. | ||
|
||
- 'git-remote' did not like period in a remote's name. | ||
|
||
* Documentation updates | ||
|
||
- added and clarified core.bare, core.legacyheaders configurations. | ||
|
||
- updated "git-clone --depth" documentation. | ||
|
||
|
||
* Assorted git-gui fixes. |
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.