Displaying 20 results from an estimated 146 matches for "cvsignor".
Did you mean:
cvsignore
2005 Apr 26
1
Bug#306368: filter rules are too modern for remote rsync (which is 2.5.6)
...c -Cavvv ~/ports-utils bfc1:
> (bfc1 is the remote Fedora Core 1 host with rsync 2.5.6)
>
> Here is the output from rsync on Debian:
>
> opening connection using /home/feldgendler/bin/ssh bfc1 rsync --server -vvvlogDtprC .
> [sender] add_rule(-C )
> [sender] add_rule(- RCS) [cvsignore]
> [sender] add_rule(- SCCS) [cvsignore]
> [sender] add_rule(- CVS) [cvsignore]
> [sender] add_rule(- CVS.adm) [cvsignore]
> [sender] add_rule(- RCSLOG) [cvsignore]
> [sender] add_rule(- cvslog.*) [cvsignore]
> [sender] add_rule(- tags) [cvsignore]
> [sender] add_rule(- TAGS)...
2004 Mar 25
1
Per-directory .cvsignore too aggressive
I have noticed that the contents of per-directory .cvsignore files apply
outside their subtrees when using --cvs-exclude in rsync 2.6.0. In the
results below, notice how dir1/.cvsignore is applying to a file in dir2.
There is no ~/.cvsignore, and the CVSIGNORE variable is unset.
% ls -AFR
.:
dir1/ dir2/
./dir1:
.cvsignore file1
./dir2:
file2.foo
% cat...
2001 Apr 30
2
Add a couple .cvsignore files?
It would be nice if the CVS source had a .cvsignore file in the main
dir with the following items:
ssh scp sshd ssh-add ssh-keygen ssh-keyscan ssh-agent sftp-server sftp
configure config.h.in config.h config.status Makefile
ssh_prng_cmds *.out
Plus a .cvsignore file in openbsd-compat that ignored "Makefile".
..wayne..
2002 Jul 25
1
OpenSSH 3.4p1's top level .cvsignore file
anyone who can help me understand-
one of my developers reimported openssh snapshot from 0722
into cvs. he sent me the following email about an error he believes
is in the snapshot
i'm not a cvs-knowledgeable person, so i'm not all that
clear on this, but should *.in files be in .cvsignore?
i tried checking a later snapshot, but 0722 seems to be the latest one.
.cvsignore is dated jun 26.
wendy
-------- Original Message --------
Wendy,
I just noticed that the OpenSSH 3.4p1 tar file has a .cvsignore
file at the top level and in it, it has config.h.in which I believe
should NOT be...
2004 Mar 24
1
incorrect exclude list with -C
I just received this bug report on Debian's rsync package.
I've verified it. The entry from the manpage:
-C [...]
Finally, any file is ignored if it is in the same directory as a
.cvsignore file and matches one of the patterns listed therein.
Here the patterns of a .cvsignore file is apparently used to exclude
file outside the directory where the .cvsignore file is found.
Any comments?
Paul Slootman
On Wed 24 Mar 2004, Frank Mehnert wrote:
> Subject: Bug#239791: rsync: incor...
2004 Aug 06
1
.cvsignore
Hi:
Just did my first svn checkout. Pretty painless.
I noticed that icecast and each of its dependent modules (except m4) has a
.cvsignore file. Am I right in thinking these are redundant now?
Geoff.
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to 'icecast-dev-request@xiph.org'
containing only the word 'unsub...
2002 Jul 20
0
[Bug 366] New: .cvsignore shouldn't be in distrib
http://bugzilla.mindrot.org/show_bug.cgi?id=366
Summary: .cvsignore shouldn't be in distrib
Product: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: openssh-unix-dev at mindro...
2005 Sep 16
1
Bug#314473: rsync still fails badly with an "!" in .cvsignore
...on,
> backwards it gives
>
> '!' rule has trailing characters: !
> rsync error: syntax or usage error (code 1) at exclude.c(833)
> ---------------------------------------------------------------------------
> #! /bin/bash -ex
>
> echo '!' > ~/.cvsignore
> echo '*~' >> ~/.cvsignore
> rm -rf /tmp/tester
> mkdir /tmp/tester
> cp /etc/passwd /tmp/tester
> cp /tmp/tester/passwd{,~}
> rsync -avbu --cvs-exclude --delete /tmp/tester remotehost:/tmp/
I've found that when "!" was scanned, the pointer was not a...
2004 Oct 06
1
[Bug 1873] rsync doesn't obey .cvsignore (exclamation) ! semantics
https://bugzilla.samba.org/show_bug.cgi?id=1873
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From wayned@samba.org 2004-10-05 17:19
2001 Sep 30
0
Exclude sets generated with -C
...; and "tags"
respectively, which were ignored, since these names matched the
default CVS ignore list.
When rsync builds the file lists with the -C option, it should include
any CVS controlled files (by checking CVS/Entries) before applying the
default CVS excludes, and the per-directory .cvsignore files.
Its actually surprising how many projects out there have
sub-directories with the name "core". Linux is one of them.
Anyway, I have included a patch against rsync 2.4.6 which I believe
fixes this bug. If this patch is ok, could it be included in the next
release?
Thanks for w...
2003 Jan 14
3
.rsync-/.rsync+ patch and --link-dest example
...s a patch to add an --rsync-exclude option to rsync-2.5.6cvs.
File names in .rsync- (or .rsync+) are excluded (or included) from the file
lists associated with the current directory and all of its subdirectories.
This has advantages over --cvs-exclude for backing up large file systems
since the .cvsignore files only apply to the current directory:
unless the .cvsignore restrictions apply to the entire tree they must be
duplicated in each subdirectory. In any case, the --cvs-exclude option
isn't intended for general system backups (for example, unless the default
list is cleared with "!&quo...
2006 Jun 28
1
Tracking local changes in CVS
I'm tracking some custom OpenSSH changes (based on 4.3p2) in a local CVS
repository and have run into a few problems... mainly (I believe) because
of the .cvsignore files.
Keep in mind the main idea here is to commit the OpenSSH source without
changes, tag, then add my custom changes and add a new tag. I can
probably fix these by making local modes, but I'm just wondering if there
are specific reasons importing the source without changes doesn't...
2004 Apr 22
1
rsync problems from flist.c change
...irror somewhere in /usr/local, so that
sources for recommended packages for the current development version of
R are in
/usr/local/src/apps/stat/R/src/contrib/2.0.0/Recommended/
Mirroring happens via
$RSYNC -rcIzC --verbose --delete \
--exclude=Makefile.in --exclude=Makefile --exclude=.cvsignore \
--include=*.tar.gz --exclude=*.tgz \
/usr/local/src/apps/stat/R/src/contrib/2.0.0/Recommended/ .
in the src/library/Recommended subdirectory of an R source tree.
Current versions of rsync seem to have a problem with deleting files
from src/library/Recommended in certain situations....
2004 Feb 08
2
strange behaviour with -C
...8 03:18 index.php
drwxrwxr-x 5 hop hop 4096 Feb 8 03:12 projects
from/projects:
total 24
drwxrwxr-x 5 hop hop 4096 Feb 8 03:12 .
drwxrwxr-x 3 hop hop 4096 Feb 8 03:34 ..
-rw-rw-r-- 1 hop hop 2 Feb 8 03:12 .cvsignore
drwxrwxr-x 2 hop hop 4096 Feb 8 03:12 CVS
drwxrwxr-x 2 hop hop 4096 Feb 8 03:35 medien_welten
drwxrwxr-x 2 hop hop 4096 Feb 8 03:35 rodeoworlds
[there is more, but I reduced it, so that I could see the effect better.
All I describe he...
2002 Sep 10
0
[Bug 366] .cvsignore shouldn't be in distrib
http://bugzilla.mindrot.org/show_bug.cgi?id=366
djm at mindrot.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From djm at mindrot.org 2002-09-10 21:45
2002 Jul 18
3
Boring but useful VP3/QT patches
I think I'll start with the simple stuff, just to be safe. :-)
Here are some cvsignore updates, and a fix for the inter-project dependencies in the MSVC *.dsw file.
Cheers,
Eric
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vp32-cvs-ignore-patch.diff
Type: application/octet-stream
Size: 1524 bytes
Desc: vp32-cvs-ignore-patch.diff
Url : http://...
2004 Aug 17
4
[LLVMdev] compilation error after updated from cvs:
...nfo.td:53: Variable not defined: 'GPRC'!
make[3]: *** [PowerPCGenRegisterInfo.h.inc] Error 1
make[3]: Leaving directory `/pool/tmp/ssrc/llvm/lib/Target/PowerPC'
maybe I just have to "make clean" and/or ./configure
BTW, would it be nice to put Depend, Release and Debug
into .cvsignore for other llvm fans too?
---
Valery A.Khamenya
2004 Apr 27
0
Merging excludes using ". FILE"
...This allows a simpler version of
the --rsync-exclude=FILE suggestion (aka --perdir-exclude-from=FILE in
my modified patch) while also being more flexible (because you can
control where in the rules the merge happens). To make this even
better, an advanced user can specify where the per-directory .cvsignore
file gets inserted into the rule order as well, using the same
dot-space idiom (by default it gets inserted after all user-supplied
rules if the user uses -C without telling us where to put the file).
Some examples:
% rsync -av --exclude=". .excl" from/ to
% cat foo
# Earl...
2003 Feb 16
1
rsync-exclude.patch.
...o /there, excluding any files listed in
a file .rsync from the directory containing this file and all of its
subdirectories. As usual, prefixing a pattern with "+ " forces inclusion
rather than exclusion.
This has advantages over --cvs-exclude for backing up large file systems
since the .cvsignore files only apply to the current directory:
unless the .cvsignore restrictions apply to the entire tree they must be
duplicated in each subdirectory. In any case, the --cvs-exclude option
isn't intended for general system backups (for example, unless the default
list is cleared with "!&quo...
2006 Apr 26
10
ANN: svn_conf generator -- making "svn import" easy and fun
...s not that simple -- there are quite few
files that should be ignored.
I used to manually remove added log files and tmp/cache, tmp/sessions,
tmp/sockets files after the import and then go through the painful
process of setting svn:ignore properties.
There is an easier way -- simply create .cvsignore files before the
import and svn will honor them.
I created svn_conf generator which will add a new rake task to your
project to automate this. I hope you will find it useful.
Instructions:
1. Install svn_conf generator
gem install --source http://dist.agilewebsolutions.com/
svn_conf_gener...