From bc4ccbe7457df23567544754364f7686251677ac Mon Sep 17 00:00:00 2001 From: Chaitanya Gurrapu Date: Thu, 20 Apr 2017 13:25:18 +1000 Subject: [PATCH 1/2] Update recording-changes.asc Improve comment about what the '**' glob pattern does. --- book/02-git-basics/sections/recording-changes.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/recording-changes.asc b/book/02-git-basics/sections/recording-changes.asc index c750d889a..f380449ee 100644 --- a/book/02-git-basics/sections/recording-changes.asc +++ b/book/02-git-basics/sections/recording-changes.asc @@ -246,7 +246,7 @@ build/ # ignore doc/notes.txt, but not doc/server/arch.txt doc/*.txt -# ignore all .pdf files in the doc/ directory +# ignore all .pdf files in the doc/ directory or in the sub directories of doc/ doc/**/*.pdf ---- From fc5ed3c1134e95338b405f7e9acd9df9e10f2819 Mon Sep 17 00:00:00 2001 From: Chaitanya Gurrapu Date: Wed, 21 Jun 2017 16:30:39 +1000 Subject: [PATCH 2/2] Updating suggestion for comment change based on feedback. --- book/02-git-basics/sections/recording-changes.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/recording-changes.asc b/book/02-git-basics/sections/recording-changes.asc index f380449ee..9ca266370 100644 --- a/book/02-git-basics/sections/recording-changes.asc +++ b/book/02-git-basics/sections/recording-changes.asc @@ -246,7 +246,7 @@ build/ # ignore doc/notes.txt, but not doc/server/arch.txt doc/*.txt -# ignore all .pdf files in the doc/ directory or in the sub directories of doc/ +# ignore all .pdf files in the doc/ directory and any of its subdirectories doc/**/*.pdf ----