On clearcase machine, Let say i have a file called xyz.c. I have checked out the file using command
jco -nc xyz.c
now i did some changes and checked-in the file(not submitted yet) using below command
jci -nc xyz.c
I have now a new version created for the file xyz.c, which we can see by below command
jlog xyz.c
---------------------------------------------------------------------------
Date: 04-May-11.13:05:02 User: abc
Event: create version
Version: xyz.c@@/main/1
Comment:
---------------------------------------------------------------------------
Date: 28-Apr-11.12:19:51 User: abc
Event: create version
Version: xyz.c@@/main/0
Comment:
---------------------------------------------------------------------------
Date: 28-Apr-11.12:19:51 User: abc
Event: create branch
Version: io.c
Comment:
---------------------------------------------------------------------------
Let say i have again checked out for my coding purpose and checked in again which created version 2.
My question is : if i am on version 2, How can i delete the version 2 so that i can get my version 1. Note : version 2 is checked in but not submitted yet.