Skip to content

Commit 867b1c1

Browse files
committed
Sync with maint
* maint: Start preparing for 1.8.4.3 gitignore.txt: fix documentation of "**" patterns
2 parents 6ba01ba + 486b65a commit 867b1c1

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

Documentation/RelNotes/1.8.4.3.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Git v1.8.4.3 Release Notes
2+
========================
3+
4+
Fixes since v1.8.4.2
5+
--------------------
6+
7+
* "git rev-list --objects ^v1.0^ v1.0" gave v1.0 tag itself in the
8+
output, but "git rev-list --objects v1.0^..v1.0" did not.
9+
10+
* The fall-back parsing of commit objects with broken author or
11+
committer lines were less robust than ideal in picking up the
12+
timestamps.
13+
14+
* Bash prompting code to deal with an SVN remote as an upstream
15+
were coded in a way not supported by older Bash versions (3.x).
16+
17+
* "git checkout topic", when there is not yet a local "topic" branch
18+
but there is a unique remote-tracking branch for a remote "topic"
19+
branch, pretended as if "git checkout -t -b topic remote/$r/topic"
20+
(for that unique remote $r) was run. This hack however was not
21+
implemented for "git checkout topic --".
22+
23+
* Coloring around octopus merges in "log --graph" output was screwy.
24+
25+
* We did not generate HTML version of documentation to "git subtree"
26+
in contrib/.
27+
28+
* The synopsis section of "git unpack-objects" documentation has been
29+
clarified a bit.
30+
31+
* An ancient How-To on serving Git repositories on an HTTP server
32+
lacked a warning that it has been mostly superseded with more
33+
modern way.
34+
35+
Also contains a handful of trivial code clean-ups, documentation
36+
updates, updates to the test suite, etc.

Documentation/gitignore.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ full pathname may have special meaning:
113113

114114
- A leading "`**`" followed by a slash means match in all
115115
directories. For example, "`**/foo`" matches file or directory
116-
"`foo`" anywhere, the same as pattern "`foo`". "**/foo/bar"
116+
"`foo`" anywhere, the same as pattern "`foo`". "`**/foo/bar`"
117117
matches file or directory "`bar`" anywhere that is directly
118118
under directory "`foo`".
119119

120-
- A trailing "/**" matches everything inside. For example,
121-
"abc/**" matches all files inside directory "abc", relative
120+
- A trailing "`/**`" matches everything inside. For example,
121+
"`abc/**`" matches all files inside directory "`abc`", relative
122122
to the location of the `.gitignore` file, with infinite depth.
123123

124124
- A slash followed by two consecutive asterisks then a slash

0 commit comments

Comments
 (0)