TF203015 The Item $/path/file has an incompatible pending change. While trying to unshelve

Visual Studio-2010TfsUnshelve

Visual Studio-2010 Problem Overview


I'm using Visual Studio 2010 Pro against Team Server 2010 and I had my project opened (apparently) as a solution from the repo, but I should've opened it as "web site". I found this out during compile, so I went to shelve my new changes and deleted the project from my local disk, then opened the project again from source (this time as web site) and now I can't unshelve my files.

Is there any way to work around this? Did I blow something up? Do I need to do maintenance at the server?

I found this question on SO #2332685 but I don't know what cache files he's talking about (I'm on XP :\ ) EDIT: Found this link after posting the question, sorry for the delay in researching, still didn't fix my problem

Of course I can't find an error code for TF203015 anywhere, so no resolution either (hence my inclusion of the number in the title, yeah?)

EDIT: I should probably mention that these files were never checked in in the first place. Does that matter? Can you shelve an unchecked item? Is that what I did wrong?

EDIT: WHAP - FOUND IT!!! Use "Undo" on the items that don't exist because they show up in pending changes as checkins.

Visual Studio-2010 Solutions


Solution 1 - Visual Studio-2010

I had deleted the files in trying to reload the workspace, even though I had shelved the changes. Then VS2010 thought those files were still pending to save. I didn't need that, so I had to figure out to "undo" the changes in Pending Changes.

Then I could unshelve.

It thought I had two ops (unshelve, commit-for-add) going simultaneously, and I thought I had only one op (unshelve).

Solution 2 - Visual Studio-2010

This is a slight aside to the OP's question

You can get a TF203015 when you try and batch merge a multiple changesets from one branch to the other without due care.

Consider a situation where you have a MAIN trunk and a DEV branch. You branched DEV from MAIN and have diligently worked away at a feature in DEV; checking work back into DEV as you progressed. Now fast forward a week or two. You are now feature complete and want to merge back into MAIN.

This is where one of our devs hit this error.

He had been working on one solution for weeks, and checking changesets back into DEV periodically, so wanted to merge a non contiguous series of changesets back into MAIN. So he picks the merge option, selects the first changeset; merges without issue, then immediately went to merge the next changeset; and bang TF203015, and its very unhelpful test in the output window; incompatible pending changes.

After a little fiddling around we now realize what is going on here; the first merge created a pending change in MAIN for the developers solution. The next merge attempt was also changes to the same solution, which would require TFS to "queue up" a second set of pending changes to the same files. It cant do this.

So in this scenario TF203015 means; "The destination branch already has pending changes on some files that are changed in this changeset. Please resolve and commit the destination branch changes before performing this merge operation"

The solution; after each merge operation our developer tests the workspace for MAIN and commits the pending change caused by the merge, then goes back to DEV and repeats.

Actually sensible and simple, but masked by a very obtuse error message.

Solution 3 - Visual Studio-2010

You can use the Team Foundation Server Power Tools March 2011 (<http://msdn.microsoft.com/en-us/vstudio/bb980963.aspx>;) that includes the command tfpt unshelve.

Once the Power Tools are installed, open a Visual Studio command prompt, change to the directory that contains the project of interest, and execute the tfpt unshelve command. It will unshelve and display the merge dialog so you can resolve the conflicts.

I credit this blog post with helping me find this solution: <http://fluentbytes.com/the-how-and-why-behind-tf203015-file-has-an-incompatible-change-while-unshelving-a-shelve-set>

Solution 4 - Visual Studio-2010

I had what appeared to be the same issue but I had created a branch after shelving my changes and I wanted to unshelve those changes to the new branch.

TFS cannot unshelve to a different path than the path upon which the shelf was created.

Solution: I unshelved back to the original branch then I used beyond compare to merge the changes from my original branch to the new branch and checked in.

Solution 5 - Visual Studio-2010

It could also be that after you create a folder in say a "Test" and you want to merge from dev to test, that you do not have that newly created folder structure checked into TFS - You will /can also get this error message.

Thus this message error CAN occur without anything to do with SHELVESETS as well for others coming from google and finding this page.

Solution 6 - Visual Studio-2010

This might be the same as jcolebrand's answer, but I'm afraid I found the phrasing there a bit abstruse. Sincere apologies if I'm just repeating.

In my scenario the incompatible pending change message was presented because I was trying to roll back multiple changesets, and the same file was affected by more than one of those changeset.

In my case I did not want to commit until all the changes had been rolled back. I believe if I had been able to commit after rolling back each changeset, the error would not have happened.

The method which worked for me was as follows:

  • I opted to roll back one changeset at a time. I found using the command line was actually a more informative way of doing this because it lists all the conflicts, whereas I think the VS UI rollback just lists the first.

  • While rolling back a changeset, if there was an incompatible pending change, I had to undo my workspace's pending changes for the affected files.

  • When all the changesets had been rolled back, I had to manually revert the files which had experienced incompatible pending change. Mostly this could be achieved simply by getting a specific version of the file (the "last-known-good" version before all the bad checkins started). But for some files where there had been both desired changes and undesired changes, I got the "last-known-good" and manually applied the good changes to it.

Solution 7 - Visual Studio-2010

This link resolved my issue:

https://blogs.infosupport.com/the-how-and-why-behind-tf203015-lt-file-gt-has-an-incompatible-change-while-unshelving-a-shelve-set/

The reason was pending change in the same work space create an incompatible change. So undo the pending changes and try unshelve. This should resolve the issue.

Solution 8 - Visual Studio-2010

If you have two branches MAIN(target) and DEV(source), now you want merge DEV into MAIN, then all files you want merge from your source, must not be older then the similar files in your target branch.

For example: you have an changed file test.cs in your DEV branch, changed at 14.03.2016. In your MAIN branch you have test.cs changed at 15.03.2016. So the target is newer then the source file and you have TF203015.

Solution: navigate in TFS Explorer to the conflict-file and merge it explicit. TFS will open the conflict manager and you can merge the conflicts by hand. Following you can merge the selected changeset.

Remarks: If you have more conflicts, you must navigate to each conflict-file and merge it explicit, so TFS opens the the conflict Manager and you can merge it by hand.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionjcolebrandView Question on Stackoverflow
Solution 1 - Visual Studio-2010jcolebrandView Answer on Stackoverflow
Solution 2 - Visual Studio-2010Pete StensønesView Answer on Stackoverflow
Solution 3 - Visual Studio-2010Mark FreemanView Answer on Stackoverflow
Solution 4 - Visual Studio-2010user594315View Answer on Stackoverflow
Solution 5 - Visual Studio-2010Tom StickelView Answer on Stackoverflow
Solution 6 - Visual Studio-2010OutstandingBillView Answer on Stackoverflow
Solution 7 - Visual Studio-2010KapilView Answer on Stackoverflow
Solution 8 - Visual Studio-2010peter70View Answer on Stackoverflow