I am using TFS 2010. When I created a new project in the Team Project Settings> Source Control checkbox "Enable multiple check-out" on by default. How to disable checkbox "Enable multiple check-out" for new projects?
相关问题
- Getting error: File extension specified '.webt
- Using TFS command line tf.exe how can I copy a rep
- TFS Power tools Migrate doesn't actually migra
- What is the difference between tfpt scorch and tfp
- TFS 2017 Agent: and error occured while sending th
相关文章
- Is it possible to do a “destroy history” in TFS?
- How do I make a TeamCity build appear in the TFS B
- TFS vs. JIRA/Bamboo/SVN [closed]
- Why doesn't my .tfignore file ignore my packag
- Is it possible to create a docker container from T
- How to Move TFS 2010 Build Definition between Proj
- How to fix TF246017 The Team foundation server cou
- How to open TFS Power Tools - Alerts Explorer
You need to edit your Process Template.
At first, download it locally by selecting in VS "Team" > "Team Project Collection Settings" > "Process Template Manager...", then click on your template & select Download. This will send all the files on you local PC.
Now open the local file "..\VersionControl\VersionControl.xml" and change entry
<exclusive_checkout required="false" />
intotrue
.Return to "Team" > "Team Project Collection Settings" > "Process Template Manager..." and now select Upload.
Once this is done any new Team Project you generate will have this option "Enable multiple check-out" unset by default.