Skip to content

Commit c511549

Browse files
committed
Sync with maint
Signed-off-by: Junio C Hamano <[email protected]>
2 parents a797b02 + 93467ee commit c511549

File tree

4 files changed

+35
-22
lines changed

4 files changed

+35
-22
lines changed

Documentation/RelNotes-1.6.2.2.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
GIT v1.6.2.2 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.2.1
5+
--------------------
6+
7+
* A longstanding confusing description of what --pickaxe option of
8+
git-diff does has been clarified in the documentation.
9+
10+
* "git diff --pickaxe-regexp" did not count overlapping matches
11+
correctly.
12+
13+
* "git-fetch" in a repository that was not cloned from anywhere said
14+
it cannot find 'origin', which was hard to understand for new people.
15+
16+
* "git-format-patch --numbered-files --stdout" did not have to die of
17+
incompatible options; it now simply ignores --numbered-files as no files
18+
are produced anyway.
19+
20+
* "git-ls-files --deleted" did not work well with GIT_DIR&GIT_WORK_TREE.
21+
22+
* "git-read-tree A B C..." without -m option has been broken for a long
23+
time.
24+
25+
* git-send-email ignored --in-reply-to when --no-thread was given.
26+
27+
* 'git-submodule add' did not tolerate extra slashes and ./ in the path it
28+
accepted from the command line; it now is more lenient.
29+
30+
31+
---
32+
exec >/var/tmp/1
33+
O=v1.6.2.1-23-g67c176f
34+
echo O=$(git describe maint)
35+
git shortlog --no-merges $O..maint

Documentation/RelNotes-1.6.3.txt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -104,28 +104,9 @@ release, unless otherwise noted.
104104
Here are fixes that this release has, but have not been backported to
105105
v1.6.2.X series.
106106

107-
* "git diff --pickaxe-regexp" did not count overlapping matches
108-
correctly (backport by cherry-picking 50fd699).
109-
110-
* "git-fetch" in a repository that was not cloned from anywhere said
111-
it cannot find 'origin', which was hard to understand for new people.
112-
113107
* git-gc spent excessive amount of time to decide if an object appears
114108
in a locally existing pack (if needed, backport by merging 69e020a).
115109

116-
* "git-ls-files --deleted" did not work well with GIT_DIR&GIT_WORK_TREE
117-
(backport by cherry-picking 8ad3dae).
118-
119-
* "git-read-tree A B C..." without -m option has been broken for a long time
120-
(backport by merging jc/maint-1.6.0-read-tree-overlay)
121-
122-
* 'git-submodule add' did not tolerate extra slashes and ./ in the
123-
path it accepted from the command line; it now is more lenient
124-
(if needed, backport by merging db75ada).
125-
126-
* git-send-email ignored --in-reply-to when --no-thread was given
127-
(backport by merging tr/maint-1.6.0-send-email-irt)
128-
129110
---
130111
exec >/var/tmp/1
131112
O=v1.6.2.1-213-g7d4e3a7

Documentation/git-format-patch.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ include::diff-options.txt[]
9797
--numbered-files::
9898
Output file names will be a simple number sequence
9999
without the default first line of the commit appended.
100-
Mutually exclusive with the --stdout option.
101100

102101
-k::
103102
--keep-subject::

builtin-log.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,8 +958,6 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
958958
die ("-n and -k are mutually exclusive.");
959959
if (keep_subject && subject_prefix)
960960
die ("--subject-prefix and -k are mutually exclusive.");
961-
if (numbered_files && use_stdout)
962-
die ("--numbered-files and --stdout are mutually exclusive.");
963961

964962
argc = setup_revisions(argc, argv, &rev, "HEAD");
965963
if (argc > 1)

0 commit comments

Comments
 (0)