info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Administrative rights


From: Mark D. Baushke
Subject: Re: Administrative rights
Date: Sat, 15 Mar 2003 23:57:16 -0800

KK <address@hidden> writes:

> Hi all
> how to get administrative rights in CVS?
> my repository is on RedHat7.2 machine..

You make sure you are in the 'group' cvsadmin as defined in the /etc/group
file.

Read http://www.cvshome.org/docs/manual/cvs_16.html#SEC119 for more
information.

> 
> cvs admin -o 1.13 QuarantineReportDlg.h (in directory
> D:\Projects\CVS-WD\appgroup\AV\GUI\)
> cvs [admin aborted]: usage is restricted to repository administrators

It is usually a bad idea to delete an old revision. It is considered
'better' to commint a new version that reverse the impact of the
previous commit.

So, if version 1.13 of your file has a problem, you would want to use

  cvs update -j 1.13 -j 1.12 QuarantineReportDlg.h
  ... the file QuarantineReportDlg.h now looks like version 1.12 of the file.
  cvs commit
  ... you have now reversed the problem that arose with your commit to
  ... create version 1.13 of the file which is 'better' than losing the
  ... information that it was in a bad state for a while.

Read http://www.cvshome.org/docs/manual/cvs_5.html#SEC62 for more information.
 
        Enjoy!
        -- Mark




reply via email to

[Prev in Thread] Current Thread [Next in Thread]