Re: cvs tag checkout

2004-06-14 Thread Rohan Nandode
I would like to attach specific tags to some files and not modules or 
directories, how can I do that?
cvs tag TAG_NAME list of files
Also, how can I checkout only a file with a specific tag?
to get files tagged with TAG_NAME in a module
cvs co -r TAG_NAME module_name
to get particular file
cvs co -r TAG_NAME file_name
HTH
Rohan

___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Khyati Nayak

That is helpful. Thanks a lot.

But now the problem is I cannot checkout only the files with a particular tag because the directory structure cannot be gotten rid of; I am using a Unix repository.

Thanks
Khyati







Rohan Nandode [EMAIL PROTECTED]
06/14/2004 11:37 AM
Please respond to rohan_nandode


To:Khyati Nayak [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Subject:Re: cvs tag checkout


 
 I would like to attach specific tags to some files and not modules or 
 directories, how can I do that?

cvs tag TAG_NAME list of files

 
 Also, how can I checkout only a file with a specific tag?

to get files tagged with TAG_NAME in a module
cvs co -r TAG_NAME module_name

to get particular file
cvs co -r TAG_NAME file_name

HTH
Rohan



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Rohan Nandode

But now the problem is I cannot checkout only the files with a 
particular tag because the directory structure cannot be gotten rid of; 
if you already have checked out source, then you can use cvs update 
command:
cvs update -r TAG_NAME module_name
or
cvs update -r TAG_NAME file_name

also, speciying -P  option would help. it prunes empty directories 
from the local copy.

Did i understand ur problem correctly?
-Rohan
I am using a Unix repository.
Thanks
Khyati

*Rohan Nandode [EMAIL PROTECTED]*
06/14/2004 11:37 AM
Please respond to rohan_nandode
   
To:Khyati Nayak [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Subject:Re: cvs tag checkout


 
  I would like to attach specific tags to some files and not modules or
  directories, how can I do that?
cvs tag TAG_NAME list of files
 
  Also, how can I checkout only a file with a specific tag?
to get files tagged with TAG_NAME in a module
cvs co -r TAG_NAME module_name
to get particular file
cvs co -r TAG_NAME file_name
HTH
Rohan



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Khyati Nayak

No. I think the problem I am having now is that cvs checkout first checks out the entire directory, then tries to remove everything from under it except the ones with the tag we want. So it tries to remove it but says cannot remove DDD : directory not empty.

I dont know if using a Unix repository has anything to do with this.

Thanks
Khyati






Rohan Nandode [EMAIL PROTECTED]
06/14/2004 11:55 AM
Please respond to rohan_nandode


To:Khyati Nayak [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Subject:Re: cvs tag checkout



 But now the problem is I cannot checkout only the files with a 
 particular tag because the directory structure cannot be gotten rid of; 

if you already have checked out source, then you can use cvs update 
command:
cvs update -r TAG_NAME module_name
or
cvs update -r TAG_NAME file_name

also, speciying -P option would help. it prunes empty directories 
from the local copy.

Did i understand ur problem correctly?

-Rohan

 I am using a Unix repository.
 
 Thanks
 Khyati
 
 
 
 *Rohan Nandode [EMAIL PROTECTED]*
 
 06/14/2004 11:37 AM
 Please respond to rohan_nandode
 

 To:Khyati Nayak [EMAIL PROTECTED]
 cc:[EMAIL PROTECTED]
 Subject:Re: cvs tag checkout
 
 
 
 
 
  I would like to attach specific tags to some files and not modules or
  directories, how can I do that?
 
 cvs tag TAG_NAME list of files
 
 
  Also, how can I checkout only a file with a specific tag?
 
 to get files tagged with TAG_NAME in a module
 cvs co -r TAG_NAME module_name
 
 to get particular file
 cvs co -r TAG_NAME file_name
 
 HTH
 Rohan
 
 
 




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Rohan Nandode
No. I think the problem I am having now is that cvs checkout first 
checks out the entire directory, then tries to remove everything from 
under it except the ones with the tag we want. So it tries to remove it 
but says cannot remove DDD : directory not empty.

I dont know if using a Unix repository has anything to do with this.
I have repository on linux and dont see this kind of problem.
Did you try checkout on another m/c?
does cvs update also fails?
May be you can get some more info at:
http://cvsbook.red-bean.com/cvsbook.html#Some%20commands%20fail%20remotely%20but%20not%20locally%3b%20how%20should%20I%20debug%3f
-Rohan
Thanks
Khyati
*Rohan Nandode [EMAIL PROTECTED]*
06/14/2004 11:55 AM
Please respond to rohan_nandode
   
To:Khyati Nayak [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Subject:Re: cvs tag checkout



  But now the problem is I cannot checkout only the files with a
  particular tag because the directory structure cannot be gotten rid of;
if you already have checked out source, then you can use cvs update
command:
cvs update -r TAG_NAME module_name
or
cvs update -r TAG_NAME file_name
also, speciying -P  option would help. it prunes empty directories
from the local copy.
Did i understand ur problem correctly?
-Rohan
  I am using a Unix repository.
 
  Thanks
  Khyati
 
 
 
  *Rohan Nandode [EMAIL PROTECTED]*
 
  06/14/2004 11:37 AM
  Please respond to rohan_nandode
 
 
  To:Khyati Nayak [EMAIL PROTECTED]
  cc:[EMAIL PROTECTED]
  Subject:Re: cvs tag checkout
 
 
 
 
   
I would like to attach specific tags to some files and not modules or
directories, how can I do that?
 
  cvs tag TAG_NAME list of files
 
   
Also, how can I checkout only a file with a specific tag?
 
  to get files tagged with TAG_NAME in a module
  cvs co -r TAG_NAME module_name
 
  to get particular file
  cvs co -r TAG_NAME file_name
 
  HTH
  Rohan
 
 
 





___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Khyati Nayak

I think I got it to work now. Thanks

Is there some way I can specify wild card characters in the rtag command to tag some type of files?








Rohan Nandode [EMAIL PROTECTED]
06/14/2004 12:25 PM
Please respond to rohan_nandode


To:Khyati Nayak [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Subject:Re: cvs tag checkout


 
 No. I think the problem I am having now is that cvs checkout first 
 checks out the entire directory, then tries to remove everything from 
 under it except the ones with the tag we want. So it tries to remove it 
 but says cannot remove DDD : directory not empty.
 
 I dont know if using a Unix repository has anything to do with this.

I have repository on linux and dont see this kind of problem.
Did you try checkout on another m/c?
does cvs update also fails?

May be you can get some more info at:
http://cvsbook.red-bean.com/cvsbook.html#Some%20commands%20fail%20remotely%20but%20not%20locally%3b%20how%20should%20I%20debug%3f

-Rohan

 
 Thanks
 Khyati
 
 
 *Rohan Nandode [EMAIL PROTECTED]*
 
 06/14/2004 11:55 AM
 Please respond to rohan_nandode
 

 To:Khyati Nayak [EMAIL PROTECTED]
 cc:[EMAIL PROTECTED]
 Subject:Re: cvs tag checkout
 
 
 
 
 
  But now the problem is I cannot checkout only the files with a
  particular tag because the directory structure cannot be gotten rid of;
 
 if you already have checked out source, then you can use cvs update
 command:
 cvs update -r TAG_NAME module_name
 or
 cvs update -r TAG_NAME file_name
 
 also, speciying -P option would help. it prunes empty directories
 from the local copy.
 
 Did i understand ur problem correctly?
 
 -Rohan
 
  I am using a Unix repository.
 
  Thanks
  Khyati
 
 
 
  *Rohan Nandode [EMAIL PROTECTED]*
 
  06/14/2004 11:37 AM
  Please respond to rohan_nandode
 
 
  To:Khyati Nayak [EMAIL PROTECTED]
  cc:[EMAIL PROTECTED]
  Subject:Re: cvs tag checkout
 
 
 
 
  
   I would like to attach specific tags to some files and not modules or
   directories, how can I do that?
 
  cvs tag TAG_NAME list of files
 
  
   Also, how can I checkout only a file with a specific tag?
 
  to get files tagged with TAG_NAME in a module
  cvs co -r TAG_NAME module_name
 
  to get particular file
  cvs co -r TAG_NAME file_name
 
  HTH
  Rohan
 
 
 
 
 
 
 




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: cvs tag checkout

2004-06-14 Thread Frederic Brehm
At 02:08 PM 6/14/2004, Khyati Nayak wrote:
Is there some way I can specify wild card characters in the rtag command 
to tag some type of files?
On a unix-like system, the wildcards are expanded by the shell using local 
files. Since rtag is supposed to work without a checked-out sandbox, this 
could be a problem.

Also, rtag requires module names as arguments, not filenames.
Wildcards will work with cvs tag for files in the current directory, though.
Fred
___
Frederic W. Brehm, Sarnoff Corporation, http://www.sarnoff.com/

___
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs