Skip to content

Commit 76694b7

Browse files
committed
Fine-tune gitignore
The pattern "*.1" is intended to match manpage files built in the "doc" directory, but it was also matching distribution directories like "yash-2.56.1". To avoid this mismatch, this commit adds the explicit prefix to the pattern.
1 parent 8949d9f commit 76694b7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.gitignore

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ TAGS
55
tags
66
cscope.out
77

8-
*.1
9-
*.html
10-
*.xhtml
11-
*.xml
12-
index.txt
13-
yash.txt
14-
158
/yash
169
/makesignum
1710
/signum.h
@@ -22,6 +15,13 @@ yash.txt
2215

2316
/builtins/builtins.a
2417

18+
/doc/**/*.1
19+
/doc/**/*.html
20+
/doc/**/*.xhtml
21+
/doc/**/*.xml
22+
/doc/**/index.txt
23+
/doc/**/yash.txt
24+
2525
/lineedit/lineedit.a
2626
/lineedit/commands.in
2727

0 commit comments

Comments
 (0)