Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are trying to follow the branching strategy from the TFS Branching Guide and have reached the point where we have made a branch representing a release, which should now be made read-only.

In the Properties|Security tab for the branch, it presents six user groups each with 10 permissions other than Read. Do I have to go through and click Deny on 60 check boxes, or is there a better way to make this branch read-only?

share|improve this question

3 Answers

up vote 16 down vote accepted

Right-click the branch in the Source Control Explorer, and select the Lock... option

share|improve this answer
3  
This leaves the lock hanging around as a pending change. Removing check-in permissions is the right answer. – Ian Goldby Aug 16 '12 at 8:37
+1 The lock simply doesn't work... As a locker, I have the "add lock" change pending, and on top of that, I can go and check-in files freely. Changing permissions works better IMHO. – Etienne Oct 8 '12 at 5:10
1  
@Etienne - "As a locker, I have the "add lock" change pending" - yes, you have to commit the lock to implement it. Once it's committed, you won't be able to check in freely. Permissions isn't a bad way to manage this, but can get very messy. use with caution – Josh E Oct 8 '12 at 15:59

As a quick-n-dirty, you could Lock it for Check Out (although the locker would have to remember to keep the lock in their pending changes forever... which makes me think there's a better way)

share|improve this answer
dang! you beat me by 11s! – Josh E Jun 24 '09 at 14:10
the locker wouldn't have to remember to keep the lock - it would just prevent check-ins. The best strategy in that case is for Devs with pending changes to shelve them on the server. – Josh E Jun 24 '09 at 14:11
What I mean is that the Lock sits in the lockers pending changes window as if it were an actual 'pending change' - and clicking Check In with the lock item checked is what releases the lock. It's... somewhat unintuitive. – AakashM Jun 24 '09 at 14:15
7  
I have a "management" workspace where I perform merges, hold locks, etc. That way I don't see them during day to day development. – Richard Berg Jun 25 '09 at 15:23

To answer the 2nd part of the question -- removing or denying the Read permission effectively denies everything else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.