@@ -218,7 +218,7 @@ $ cat .gitignore
218
218
219
219
所谓的 glob 模式是指 shell 所使用的简化了的正则表达式。
220
220
星号(`*`)匹配零个或多个任意字符;`[abc]` 匹配任何一个列在方括号中的字符(这个例子要么匹配一个 a,要么匹配一个 b,要么匹配一个 c);问号(`?`)只匹配一个任意字符;如果在方括号中使用短划线分隔两个字符,表示所有在这两个字符范围内的都可以匹配(比如 `[0-9]` 表示匹配所有 0 到 9 的数字)。
221
- 使用两个星号(`*`) 表示匹配任意中间目录,比如`a/**/z` 可以匹配 `a/z`, `a/b/z` 或 `a/b/c/z`等。
221
+ 使用两个星号(`*`) 表示匹配任意中间目录,比如 `a/**/z` 可以匹配 `a/z` , `a/b/z` 或 `a/b/c/z` 等。
222
222
223
223
我们再看一个 .gitignore 文件的例子:
224
224
@@ -291,7 +291,7 @@ index 8ebb991..643e24f 100644
291
291
-merged in.
292
292
+merged in. Also, split your changes into comprehensive chunks if your patch is
293
293
+longer than a dozen lines.
294
-
294
+
295
295
If you are starting to work on a particular area, feel free to submit a PR
296
296
that highlights your work in progress (and note in the PR title that it's
297
297
----
@@ -348,7 +348,7 @@ index 643e24f..87f08c8 100644
348
348
+++ b/CONTRIBUTING.md
349
349
@@ -119,3 +119,4 @@ at the
350
350
## Starter Projects
351
-
351
+
352
352
See our [projects list](https://github.com/libgit2/libgit2/blob/development/PROJECTS.md).
353
353
+# test line
354
354
----
@@ -369,7 +369,7 @@ index 8ebb991..643e24f 100644
369
369
-merged in.
370
370
+merged in. Also, split your changes into comprehensive chunks if your patch is
371
371
+longer than a dozen lines.
372
-
372
+
373
373
If you are starting to work on a particular area, feel free to submit a PR
374
374
that highlights your work in progress (and note in the PR title that it's
375
375
----
0 commit comments