I haven't been able to find an answer for this. If I run following command from command line

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

What is the scope of the logs that are printed out? Does it contains logs only for the activities on the main trunk Or is it everything i.e. activities from all branches are also included?

NOTE: This might be a naive question, But I have not had enough experience with CVS and I need a quick and accurate answer, thus not much time to read up on things.

Thanks.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Learned this hard way but, following command:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

actually lists all activities for that module. i.e. activities on trunk as well as all branches for this module.

To restrict the activity logs to a specific branch use:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r*BranchName* *Module*

Note: there is not space between -r option and the branch name.

To restrict the activity logs to only main branch i.e. trunk use:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r::HEAD *Module*
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.