Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Mohamed Mahmoud (El-Geish)
You wouldn't be here if you didn't know what you are looking for.
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Algorithms
C++
Cartoon
Development
How To
i18n
Metrics
Security
Source Control
SQL
Testing
VSTF
WCF
News
Disclaimer: All posts are provided "AS IS" with no warranties, confering no rights, and expressing only my personal opinion, not Microsoft's.
Archives
November 2009 (2)
October 2009 (1)
September 2009 (1)
August 2009 (2)
July 2009 (1)
May 2009 (1)
April 2009 (19)
March 2009 (40)
February 2009 (3)
August 2008 (1)
July 2008 (2)
June 2008 (2)
May 2008 (1)
April 2008 (2)
March 2008 (3)
February 2008 (2)
January 2008 (6)
December 2007 (5)
November 2007 (1)
Blogroll
Jason Barile's Blog
Richard Berg's Blog
Brian Harry’s Blog
MSDN Links
MSDN
Windows Live
Windows Live Home
March 2008 - Posts
Thursday, March 27, 2008 3:28 PM
How to: Label items in a changeset using tf label?
We can specify the versionspec to tf label either by supplying the /v or /version argument (for example, /v:C1256), or by appending it to the itemspec (for example, foo.cs;C1256). Here's an example that attaches the "goodbuild" label to version 1256 of
Posted by
mohamedg
|
0 Comments
Filed under:
VSTF
,
Source Control
,
How To
Wednesday, March 19, 2008 6:01 PM
Exclude file from source control
When you need to exclude a file in a project from source control, you can select that file in the Solution Explorer window, then go to File > Source Control > Exclude [filename] from Source Control. A red icon should appear to the left of that file
Posted by
mohamedg
|
2 Comments
Filed under:
VSTF
,
Source Control
Thursday, March 06, 2008 3:49 PM
How to: Find the latest changeset you have on a workspace?
To know the answer to this question, you can run the following command: tf history . /stopafter:1 /v:1~W /r That's it :)
Posted by
mohamedg
|
0 Comments
Filed under:
VSTF
,
Source Control
,
How To