Actions:
|
2012-08-23 06:46 AEST by Glen Starrett - Trying to update a sandbox with new keyword options and even using the -R to
force a recursion it won't affect files in a subdirectory. Would be "handy" if
it could be forced on.
In the following example, I'd like to get the files in the current directory as
well as the ones in promoTest, but it only changes the kopt on the one in the
current directory:
>>>>>>>>>
C:\Users\Glen Starrett\Documents\test\europa\testing>cvs up -CAdP
? wrap.txt
cvsntsrv server: Updating .
U UnicodeNOTTest.txt
U UnicodeTest.txt
U boo,ya.doc
U foo.cab
U foo.doc
U hi2.txt
U hi3.txt
U hi_rename.doc
U hi_txt.doc
U myfilea.csp
U noexp.txt
U noexp2.txt
U noexp3.txt
U noexp4.txt
U something's amiss.doc
cvsntsrv server: Updating fold
cvsntsrv server: Updating promoTest
U promoTest/file1.txt
U promoTest/hi1.txt
U promoTest/hi2.txt
C:\Users\Glen Starrett\Documents\test\europa\testing>cvs up -k+x -R *.txt
U hi2.txt
U hi3.txt
U noexp.txt
U noexp2.txt
U noexp3.txt
U noexp4.txt
U UnicodeNOTTest.txt
U UnicodeTest.txt
cvsntsrv server: use `cvsntsrv add' to create an entry for wrap.txt
C:\Users\Glen Starrett\Documents\test\europa\testing>cvs status promoTest\file1.
txt
===================================================================
File: file1.txt Status: Up-to-date
Working revision: 1.1
Repository revision: 1.1 /myrepo/testing/promoTest/file1.txt,v
Expansion option: kv
Commit Identifier: e184f0f00040f06
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: (none)
Merge From: (none)
C:\Users\Glen Starrett\Documents\test\europa\testing>cvs status hi3.txt
===================================================================
File: hi3.txt Status: Up-to-date
Working revision: 1.4
Repository revision: 1.4 /myrepo/testing/hi3.txt,v
Expansion option: kv
Commit Identifier: 19944e5ffa3b022f
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: kvx
Merge From: (none)
<<<<<<<<<
I've tried changing the order of operands but it doesn't seem to affect it.
If you don't use a filespec on the command then it does recurse by default. |