GNU bug report logs -
#37189
25.4.1: vc-hg-ignore implementation is missing
Previous Next
Full log
View this message in rfc822 format
> Cc: 37189 <at> debbugs.gnu.org
> From: Wolfgang Scherer <Wolfgang.Scherer <at> gmx.de>
> Date: Fri, 21 Feb 2020 23:22:18 +0100
>
> > Now, one could argue that one use case is more important than the other one, and that vc-ignore has for a while been geared toward entering plain file names rather than glob patterns. I have little opinion on this subject, however, since I mostly edit ignore files by hand, and do so very rarely. So as far as I'm concerned, we could remove this feature altogether and not lose much.
>
> Both use cases are important for casual users of a VC.
I think the issue is not such general, but a more specific one: is the
use case of ignoring patterns more important than ignoring particular
files, when we are talking about usage through VC?
> SRC has ignore files similar to CVS and SVN.
That's not my reading of the SRC source, which simply does
if line.startswith("#") or not line.strip():
continue
elif line.startswith("!"):
ignorable -= set(glob.glob(line[1:].strip()))
else:
ignorable |= set(glob.glob(line.strip()))
and the Python documentation, which says:
glob.glob(pathname, *, recursive=False)
Return a possibly-empty list of path names that match pathname,
which must be a string containing a path specification. pathname
can be either absolute (like /usr/src/Python-1.5/Makefile) or
relative (like ../../Tools/*/*.gif), and can contain shell-style
wildcards. Broken symlinks are included in the results (as in
the shell). Whether or not the results are sorted depends on the
file system.
So Git-style root-directory-only .srcignore files will do for SRC.
Which doesn't surprise me at all, because SRC in general copycats
Git's behavior in many aspects.
> > Roughly and handwavy, we can take this case to mean "use default-directory".
> Unfortunately not. If the file or pattern to be ignored is in a
> subdirectory of default-directory, the DIRECTORY argument must reflect
> this for CVS, SVN, SRC.
But since CVS and SVN don't use vc-default-ignore, and SRC can do with
a single file in the root of the repository, does it really matter in
practice?
This bug report was last modified 4 years and 351 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.