Skip to content

Commit 8f84c95

Browse files
committed
Sync with 1.7.4.3
2 parents c4b2ce6 + d83a831 commit 8f84c95

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

Documentation/RelNotes/1.7.4.3.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Git v1.7.4.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.4.2
5+
--------------------
6+
7+
* "git apply" used to confuse lines updated by previous hunks as lines
8+
that existed before when applying a hunk, contributing misapplication
9+
of patches with offsets.
10+
11+
* "git branch --track" (and "git checkout --track --branch") used to
12+
allow setting up a random non-branch that does not make sense to follow
13+
as the "upstream". The command correctly diagnoses it as an error.
14+
15+
* "git checkout $other_branch" silently removed untracked symbolic links
16+
in the working tree that are in the way in order to check out paths
17+
under it from the named branch.
18+
19+
* "git cvsimport" did not bail out immediately when the cvs server cannot
20+
be reached, spewing unnecessary error messages that complain about the
21+
server response that it never got.
22+
23+
* "git diff --quiet" did not work very well with the "--diff-filter"
24+
option.
25+
26+
* "git grep -n" lacked a long-hand synonym --line-number.
27+
28+
* "git stash apply" reported the result of its operation by running
29+
"git status" from the top-level of the working tree; it should (and
30+
now does) run it from the user's working directory.
31+
32+
And other minor fixes and documentation updates.

Documentation/git-pack-objects.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,18 @@ self-contained. Use `git index-pack --fix-thin`
192192
--delta-base-offset::
193193
A packed archive can express the base object of a delta as
194194
either a 20-byte object name or as an offset in the
195-
stream, but older versions of git don't understand the
195+
stream, but ancient versions of git don't understand the
196196
latter. By default, 'git pack-objects' only uses the
197197
former format for better compatibility. This option
198198
allows the command to use the latter format for
199199
compactness. Depending on the average delta chain
200200
length, this option typically shrinks the resulting
201201
packfile by 3-5 per-cent.
202+
+
203+
Note: Porcelain commands such as `git gc` (see linkgit:git-gc[1]),
204+
`git repack` (see linkgit:git-repack[1]) pass this option by default
205+
in modern git when they put objects in your repository into pack files.
206+
So does `git bundle` (see linkgit:git-bundle[1]) when it creates a bundle.
202207

203208
--threads=<n>::
204209
Specifies the number of threads to spawn when searching for best

0 commit comments

Comments
 (0)