Home Home
  login

Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




TFS plugin "Check in" issue

usage
items
plugins

When I "check in" a file with the TFS plugin install in my VS2010 Ultimate Edition, in the source control of the gemini item put all my check out files of source.

I Attach a example image.

Thanks and sorry about my English

TFSCheckIN.png ]
User55641
· 1
User55641
Replies (5)
helpful
0
not helpful

Which version of Gemini and TFS plugin are you running?


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

I download the "Gemini TFS Source Control Check-in Policy" Version 2.0.2

Thanks


User55641
· 1
User55641
helpful
0
not helpful

I forgot to tell you that we are using TFS 2008

Thank


User55641
· 1
User55641
helpful
0
not helpful

I'm also encountering this problem with TFS 2010. When I check in a single file, but have multiple pending changes (that are not checked in), the Gemini Check-in Policy is adding notes for all of the pending changes, not just those checked in with that changeset.

This can be fixed by using "CheckedPendingChanges" instead of "AllPendingChanges" on the PendingCheckin.PendingChanges object in Evaluate() of GeminiCheckinPolicy.cs.

foreach (PendingChange pendingChange in this.PendingCheckin.PendingChanges.AllPendingChanges)

becomes

foreach (PendingChange pendingChange in this.PendingCheckin.PendingChanges.CheckedPendingChanges)

I see that there was an issue (4746) opened and closed in August, but there are no comments regarding its resolution and possible release. Would it be possible to have an update on the status or if this intended functionality?


Alex Pendleton
· 1
Alex Pendleton
helpful
0
not helpful

We have release this fix today, please download it from the gallery.


Mark Wing
· 9108
Mark Wing