How do I delete check-outs from a particular view in clearcase?
up vote
1
down vote
favorite
I have Rational ClearCase v7.1.2.13
I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.
Please help me.
clearcase
add a comment |
up vote
1
down vote
favorite
I have Rational ClearCase v7.1.2.13
I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.
Please help me.
clearcase
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have Rational ClearCase v7.1.2.13
I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.
Please help me.
clearcase
I have Rational ClearCase v7.1.2.13
I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.
Please help me.
clearcase
clearcase
edited Nov 22 at 14:01
Sneftel
23.5k64077
23.5k64077
asked Mar 20 '15 at 14:31
user3437212
1201112
1201112
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35
add a comment |
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The easiest to do is to "unregister" the user's checkouts:
cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob
cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid
That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).
The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The easiest to do is to "unregister" the user's checkouts:
cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob
cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid
That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).
The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
add a comment |
up vote
0
down vote
accepted
The easiest to do is to "unregister" the user's checkouts:
cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob
cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid
That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).
The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The easiest to do is to "unregister" the user's checkouts:
cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob
cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid
That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).
The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.
The easiest to do is to "unregister" the user's checkouts:
cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob
cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid
That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).
The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.
edited May 23 '17 at 12:12
Community♦
11
11
answered Mar 20 '15 at 14:35
VonC
825k28425933127
825k28425933127
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
add a comment |
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f29168978%2fhow-do-i-delete-check-outs-from-a-particular-view-in-clearcase%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35