From: Eric Blake <eblake@redhat.com>
To: git@vger.kernel.org
Cc: eblake@redhat.com, j6t@kdbg.org, jrnieder@gmail.com, gitster@pobox.com
Subject: [PATCHv2] Documentation: enhance gitignore whitelist example
Date: Tue, 5 Apr 2011 15:06:23 -0600 [thread overview]
Message-ID: <1302037583-19289-1-git-send-email-eblake@redhat.com> (raw)
I was trying to whitelist a single file pattern in a directory
that I was otherwise content to ignore, but when I tried:
/m4/
!/m4/virt-*.m4
then 'git add' kept warning me that I had to use -f. I finally
figured out that ignoring a directory is much different than ignoring
all files in a directory, when it comes to later negation patterns:
/m4/*
!/m4/virt-*.m4
Improving the documentation will help others learn from my mistake.
Signed-off-by: Eric Blake <eblake@redhat.com>
Acked-by: Jonathan Nieder <jrnieder@gmail.com>
CC: Johannes Sixt <j6t@kdbg.org>
---
v2: incorporate helpful comments from Junio
Documentation/gitignore.txt | 25 +++++++++++++++++++++----
1 files changed, 21 insertions(+), 4 deletions(-)
diff --git a/Documentation/gitignore.txt b/Documentation/gitignore.txt
index 2e7328b..0955931 100644
--- a/Documentation/gitignore.txt
+++ b/Documentation/gitignore.txt
@@ -70,7 +70,11 @@ PATTERN FORMAT
- An optional prefix '!' which negates the pattern; any
matching file excluded by a previous pattern will become
included again. If a negated pattern matches, this will
- override lower precedence patterns sources.
+ override lower precedence patterns sources. However, since
+ directory patterns prevent searching for any files below
+ that directory, if it is desirable to whitelist a single
+ file in a directory, you should first exclude all files in
+ the directory rather than the directory itself.
- If the pattern ends with a slash, it is removed for the
purpose of the following description, but it would only find
@@ -87,7 +91,8 @@ PATTERN FORMAT
- Otherwise, git treats the pattern as a shell glob suitable
for consumption by fnmatch(3) with the FNM_PATHNAME flag:
- wildcards in the pattern will not match a / in the pathname.
+ wildcards in the pattern will not match a / in the pathname,
+ and do not ignore files with a leading . in the pathname.
For example, "Documentation/{asterisk}.html" matches
"Documentation/git.html" but not "Documentation/ppc/ppc.html"
or "tools/perf/Documentation/perf.html".
@@ -116,8 +121,11 @@ EXAMPLES
[...]
# Untracked files:
[...]
+ # Documentation/build
# Documentation/foo.html
# Documentation/gitignore.html
+ # build/log
+ # build/.file
# file.o
# lib.a
# src/internal.o
@@ -125,19 +133,28 @@ EXAMPLES
$ cat .git/info/exclude
# ignore objects and archives, anywhere in the tree.
*.[oa]
+ # ignore files in the immediate child directory build,...
+ /build/*
+ # ... except for the log.
+ !/build/log
$ cat Documentation/.gitignore
- # ignore generated html files,
+ # ignore generated html files,...
*.html
- # except foo.html which is maintained by hand
+ # ... except foo.html which is maintained by hand
!foo.html
$ git status
[...]
# Untracked files:
[...]
+ # Documentation/build
# Documentation/foo.html
+ # build/log
[...]
--------------------------------------------------------------
+Note that using `!/build/log' works with an earlier `/build/*' but
+would have no effect if there were an earlier `/build/'.
+
Another example:
--------------------------------------------------------------
--
1.7.4
reply other threads:[~2011-04-05 21:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1302037583-19289-1-git-send-email-eblake@redhat.com \
--to=eblake@redhat.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=j6t@kdbg.org \
--cc=jrnieder@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).