[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Branch tag broke my CVS - how can I repair it?
From: |
Conrad T. Pino |
Subject: |
RE: Branch tag broke my CVS - how can I repair it? |
Date: |
Wed, 26 Jan 2005 04:56:37 -0800 |
1. Delete the branch tag from the problem file:
cvs tag -Bd cm_av_bug321 access_log.c
2. Delete working copy of the file:
rm access_log.c
3. Update file and remove sticky tag:
cvs update -A access_log.c
4. Retag the file:
cvs tag -b cm_av_bug321 access_log.c
5. Switch to branch for all files:
cvs update -r cm_av_bug321
Good luck.
> -----Original Message-----
> From: address@hidden
> [mailto:address@hidden Behalf Of Colin
> MacDonald
> Sent: Wednesday, January 26, 2005 03:17
> To: address@hidden
> Subject: Branch tag broke my CVS - how can I repair it?
>
> I created a branch, tagged as cm_av_bug321, and this tagged, among
> others, a file that was version 1.3 (tagged as rel-3-0-3-10 in the list
> below). That version 1.3 is the one that I was working with at the time.
>
> In the meantime, a colleague decided to trash version 1.3 from CVS and
> reverted to 1.2. The file hasn't changed since then.