List of files committed on a branch

2004-05-07 Thread Murugaiyan, Natarajan [IT]
I want to get list of files that have been committed on a branch since it was branched. I don't have any tag which I can associate with the branching point. I was hoping the 'cvs -q log -rPROD_BRANCH:: -R' would list what I want. Instead this command output includes files on which no commits hav

RE: List of files committed on a branch

2004-05-10 Thread Murugaiyan, Natarajan [IT]
>> >> I want to get list of files that have been committed on a branch >> since it was branched. I don't have any tag which I can associate with >> the branching point. >You should always tag the branch point when you create a branch. >> I was hoping the 'cvs -q log -rPROD_BRANCH:: -R' would

Re: List of files committed on a branch

2004-05-10 Thread Larry Jones
Murugaiyan, Natarajan [IT] writes [quoting me]: > > > cvs -q log -SR -rPROD_BRANCH > > The above command does not reference the tag for the branch point. You said you didn't have a tag for the branch point. And it doesn't need it -- when you give -r a branch name, it only shows revisions on

RE: List of files committed on a branch

2004-05-10 Thread Murugaiyan, Natarajan [IT]
With cvs compiled from latest sources, I am able to get the list of files committed on a branch using the 'cvs log' command. Larry mentioned in an earlier post that You should always tag the branch point when you create a branch. What is the motivation behind creating a br

Re: List of files committed on a branch

2004-05-10 Thread Larry Jones
Murugaiyan, Natarajan [IT] writes: > > Larry mentioned in an earlier post that > You should always tag the branch point when you create a branch. > > What is the motivation behind creating a branch point tag when branching? Although you didn't need it for this particular instance, there a

Re: List of files committed on a branch

2004-05-08 Thread Larry Jones
Murugaiyan, Natarajan [IT] writes: > > I want to get list of files that have been committed on a branch > since it was branched. I don't have any tag which I can associate with > the branching point. You should always tag the branch point when you create a branch. > I was hoping the 'cvs -q log