checkin
What is the difference between shelve and check in in TFS?
Shelved means the changes are set aside for you to work on later. Checked in means that the changes are made available to the rest of the team, will be in the build and will eventually ship. Very different. Think of shelving as a tool for context switching when you’re not done with a task. … Read more
In TFS how can I correct the links to work items on an existing changeset
You cannot change it from the changeset UI, but you can change it from most work item UI’s. You can just add a link to a the specific changeset and the changeset will show the link as well.
How to see the Check-In History of a particular user in TFS?
How to: Find a Changeset in Visual Studio 2010: In Source Control Explorer, on the File menu, point to Source Control, and then click Find Changesets. For some reason newer versions of the article are in a different location. Here are links to newer versions of the article: How to: Find a Changeset in Visual … Read more
What does ***NO_CI*** stand for?
It stands for No Continuous Integration. Since the check-in is gated, the existing code, plus this check-in, will be built separately and only allowed onwards if the build is successful. So when the gating process actually submits it to source control, there wouldn’t be any point for that check-in to cause another (continuous integration) build … Read more
git repo says it’s up-to-date after pull but files are not updated
Try this: git fetch –all git reset –hard origin/master Explanation: git fetch downloads the latest from remote without trying to merge or rebase anything. Please let me know if you have any questions!
Scripting TFS Command Line for Get Latest Version, Check Out and Check in, programmatically
Use tf.exe in the command line. In the following examples, the %PathToIde% is usually on a path like this: %ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE, or on Windows x64: %ProgramFiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE (depending on Visual Studio version and installation settings). Example for get: cd C:\TFS\Arquitectura “%PathToIde%\TF.exe” get $/Arquitectura/Main /recursive Example for checkout: cd C:\TFS\Arquitectura “%PathToIde%\TF.exe” checkout … Read more