Skip to content

Commit b7518d1

Browse files
committed
mingw-w64-x86_64-git-doc-html-2.9.2.1.6badfb3-1
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent b6778c4 commit b7518d1

File tree

795 files changed

+275921
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

795 files changed

+275921
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
GIT v1.5.0.1 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0
5+
------------------
6+
7+
* Documentation updates
8+
9+
- Clarifications and corrections to 1.5.0 release notes.
10+
11+
- The main documentation did not link to git-remote documentation.
12+
13+
- Clarified introductory text of git-rebase documentation.
14+
15+
- Converted remaining mentions of update-index on Porcelain
16+
documents to git-add/git-rm.
17+
18+
- Some i18n.* configuration variables were incorrectly
19+
described as core.*; fixed.
20+
21+
* Bugfixes
22+
23+
- git-add and git-update-index on a filesystem on which
24+
executable bits are unreliable incorrectly reused st_mode
25+
bits even when the path changed between symlink and regular
26+
file.
27+
28+
- git-daemon marks the listening sockets with FD_CLOEXEC so
29+
that it won't be leaked into the children.
30+
31+
- segfault from git-blame when the mandatory pathname
32+
parameter was missing was fixed; usage() message is given
33+
instead.
34+
35+
- git-rev-list did not read $GIT_DIR/config file, which means
36+
that did not honor i18n.logoutputencoding correctly.
37+
38+
* Tweaks
39+
40+
- sliding mmap() inefficiently mmaped the same region of a
41+
packfile with an access pattern that used objects in the
42+
reverse order. This has been made more efficient.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
GIT v1.5.0.2 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.1
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- Automated merge conflict handling when changes to symbolic
10+
links conflicted were completely broken. The merge-resolve
11+
strategy created a regular file with conflict markers in it
12+
in place of the symbolic link. The default strategy,
13+
merge-recursive was even more broken. It removed the path
14+
that was pointed at by the symbolic link. Both of these
15+
problems have been fixed.
16+
17+
- 'git diff maint master next' did not correctly give combined
18+
diff across three trees.
19+
20+
- 'git fast-import' portability fix for Solaris.
21+
22+
- 'git show-ref --verify' without arguments did not error out
23+
but segfaulted.
24+
25+
- 'git diff :tracked-file `pwd`/an-untracked-file' gave an extra
26+
slashes after a/ and b/.
27+
28+
- 'git format-patch' produced too long filenames if the commit
29+
message had too long line at the beginning.
30+
31+
- Running 'make all' and then without changing anything
32+
running 'make install' still rebuilt some files. This
33+
was inconvenient when building as yourself and then
34+
installing as root (especially problematic when the source
35+
directory is on NFS and root is mapped to nobody).
36+
37+
- 'git-rerere' failed to deal with two unconflicted paths that
38+
sorted next to each other.
39+
40+
- 'git-rerere' attempted to open(2) a symlink and failed if
41+
there was a conflict. Since a conflicting change to a
42+
symlink would not benefit from rerere anyway, the command
43+
now ignores conflicting changes to symlinks.
44+
45+
- 'git-repack' did not like to pass more than 64 arguments
46+
internally to underlying 'rev-list' logic, which made it
47+
impossible to repack after accumulating many (small) packs
48+
in the repository.
49+
50+
- 'git-diff' to review the combined diff during a conflicted
51+
merge were not reading the working tree version correctly
52+
when changes to a symbolic link conflicted. It should have
53+
read the data using readlink(2) but read from the regular
54+
file the symbolic link pointed at.
55+
56+
- 'git-remote' did not like period in a remote's name.
57+
58+
* Documentation updates
59+
60+
- added and clarified core.bare, core.legacyheaders configurations.
61+
62+
- updated "git-clone --depth" documentation.
63+
64+
65+
* Assorted git-gui fixes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
GIT v1.5.0.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.2
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- 'git.el' honors the commit coding system from the configuration.
10+
11+
- 'blameview' in contrib/ correctly digs deeper when a line is
12+
clicked.
13+
14+
- 'http-push' correctly makes sure the remote side has leading
15+
path. Earlier it started in the middle of the path, and
16+
incorrectly.
17+
18+
- 'git-merge' did not exit with non-zero status when the
19+
working tree was dirty and cannot fast forward. It does
20+
now.
21+
22+
- 'cvsexportcommit' does not lose yet-to-be-used message file.
23+
24+
- int-vs-size_t typefix when running combined diff on files
25+
over 2GB long.
26+
27+
- 'git apply --whitespace=strip' should not touch unmodified
28+
lines.
29+
30+
- 'git-mailinfo' choke when a logical header line was too long.
31+
32+
- 'git show A..B' did not error out. Negative ref ("not A" in
33+
this example) does not make sense for the purpose of the
34+
command, so now it errors out.
35+
36+
- 'git fmt-merge-msg --file' without file parameter did not
37+
correctly error out.
38+
39+
- 'git archimport' barfed upon encountering a commit without
40+
summary.
41+
42+
- 'git index-pack' did not protect itself from getting a short
43+
read out of pread(2).
44+
45+
- 'git http-push' had a few buffer overruns.
46+
47+
- Build dependency fixes to rebuild fetch.o when other headers
48+
change.
49+
50+
* Documentation updates
51+
52+
- user-manual updates.
53+
54+
- Options to 'git remote add' were described insufficiently.
55+
56+
- Configuration format.suffix was not documented.
57+
58+
- Other formatting and spelling fixes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
GIT v1.5.0.5 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.3
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- git-merge (hence git-pull) did not refuse fast-forwarding
10+
when the working tree had local changes that would have
11+
conflicted with it.
12+
13+
- git.el does not add duplicate sign-off lines.
14+
15+
- git-commit shows the full stat of the resulting commit, not
16+
just about the files in the current directory, when run from
17+
a subdirectory.
18+
19+
- "git-checkout -m '@{8 hours ago}'" had a funny failure from
20+
eval; fixed.
21+
22+
- git-gui updates.
23+
24+
* Documentation updates
25+
26+
* User manual updates
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
GIT v1.5.0.6 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.5
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- a handful small fixes to gitweb.
10+
11+
- build procedure for user-manual is fixed not to require locally
12+
installed stylesheets.
13+
14+
- "git commit $paths" on paths whose earlier contents were
15+
already updated in the index were failing out.
16+
17+
* Documentation
18+
19+
- user-manual has better cross references.
20+
21+
- gitweb installation/deployment procedure is now documented.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
GIT v1.5.0.7 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.0.6
5+
--------------------
6+
7+
* Bugfixes
8+
9+
- git-upload-pack failed to close unused pipe ends, resulting
10+
in many zombies to hang around.
11+
12+
- git-rerere was recording the contents of earlier hunks
13+
duplicated in later hunks. This prevented resolving the same
14+
conflict when performing the same merge the other way around.
15+
16+
* Documentation
17+
18+
- a few documentation fixes from Debian package maintainer.

0 commit comments

Comments
 (0)