search for: bzrignor

Displaying 2 results from an estimated 2 matches for "bzrignor".

Did you mean: bzrignore
2008 Jan 23
4
[wishlist, patch] Removing .bzr/ directory when calling R CMD build (PR#10625)
...y built package and there are accurate but unnecessary warnings that say certain subdirectories of the .bzr directory are empty. I believe the following patch, which is lightly tested with R-devel, is sufficient to remove the .bzr folder and prevent these warnings. It does not, however, remove the .bzrignore file (if it exists) but perhaps it should be augmented to do so. --- src/scripts/build.in 2008-01-23 11:42:47.000000000 -0500 +++ build.in 2008-01-23 11:45:02.000000000 -0500 @@ -215,6 +215,7 @@ print EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.svn$/);...
2017 Jul 28
0
[Bug 12940] New: rsync: -C/--cvs-exclude does not ignore SCM ignore files (patch)
...he excellent rsync tool. It's been invaluable over the years! I was recently working on a project where I wanted to rsync a copy of a git repo, and exclude SCM files. I used rsync -C, but noticed that while .git was removed, .gitignore remained. I've written a small patch to also exclude .bzrignore, .hgignore, and .gitignore, so that bazaar, git and mercurial SCMs also have their ignore files, ignored (as they are practically useless without the other SCM files, e.g., for a tarball release). Before: austin at austin2:~/src/rsync$ rsync -CavPz /home/austin/src/foobar $(mktemp -d) sending in...