vote up 3 vote down star

We use a batch file to generate code, and it automatically checks out the generated files from Team Foundation Server (TFS) so that it can regenerate them. The majority of these files are not modified, but the generator does not know this ahead of time.

The "tfs undo" command undoes the checkout, but prompts if some have been modified (which we don't want to do). We also do not want to check in the generated files right away.

Is there a command (or series of commands) to undo checkout of all unmodified files without prompting the user?

flag

4 Answers

vote up 4 vote down check

Take a look on Undo Unchanged command of the Team Foundation Server Power Tools

link|flag
Perfect, thanks. – Robert Wagner Feb 13 at 2:15
1  
Watch out though! I just tried to use this, and it does undo unchanged files. However, the command also sync's your workspace up to the latest version before it does the undo. Getting the latest versions is something I definitely didn't want to do. – Scott Langham Mar 27 at 15:23
1  
Hum. There is a /noget switch to turn the get off, darn, I wish I'd seen that before running the UU command. – Scott Langham Mar 27 at 15:26
Awesome stuff..very handy :) – jedidja Jul 13 at 10:10
vote up 0 vote down

achinda99, I think you have misunderstood TFS. You can check out individual files. You have not followed the intsructions

link|flag
vote up 1 vote down

If you simply check all the files back in again that you checked out, TFS is smart enough to figure out which ones changes and only include them in the changeset that is recorded on the server.

TFS does this by comparing MD5 hashes of the files contents before and after check-in.

This is all assuming that your generation process is purely updating the same set of files, i.e. you will never have the case where a file that was generated in a previous generation is not needed in the next generation (i.e. you would want to pend a delete for that file) or that the files change name.

If your process could potentially need files deleting, the your best bet might be to look at the Team Foundation Power Tools command (tfpt) and use the tfpt online command that will only check out the files that have changed, and will be smart enough to pend deletes for any files that are no longer needed or changed name and pend adds.

Good luck,

Martin.

link|flag
Thanks for that, however we do not want to check in the modified files at that time. The modified ones should not be checked in till the feature is done, but the unmodified ones should be removed so the dev can review the changes. – Robert Wagner Feb 14 at 3:40
vote up -2 vote down

As far as I understood, in TFS if you checkout a team project, the whole project is checked out and you do not have control of which files are brought down. If you want to prevent checkins to certain files, you can lock them.

At work, we all hate TFS.

link|flag
We can check out individual files, and locking it would not allow the developer to check them in. – Robert Wagner Feb 13 at 2:14

Your Answer

Get an OpenID
or

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