Jeeva Sarma <[EMAIL PROTECTED]> writes: > Hi > Guess my earlier question was confusing. > > I wanted to know how to commit from a working > directory > checked out from a tag(ordinary tag, not branch > tag),but which is made on a branch.How do I get rid of > the sticky tag in this case?And then how do I commit?
Do you want to commit to the branch, or to the main trunk? If to the trunk, use update -A, then commit. In this case your local files will be merged with the main trunk. If to the branch, use update -r branch, then commit. In this case your local files will be merged with the branch. See the info node "accessing branches". Make a backup, and experiment! -- -- Stephe _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
