I have just started using TFS and have some questions about hotkeys. It is really uncomfortable to select projects, solutions and files in Solution Explorer.

I want to assign hotkeys to just 2 operations:

  • Solution-wide checkin
  • Solution-wide get latest version

But I cant find these in the list of available operations in Visual Studio Keyboard Settings. Can someone help me with the names of operations if they are available?

link|improve this question

1  
It is strange that google has no results according to this:( – Restuta Oct 22 '10 at 9:33
feedback

3 Answers

up vote 1 down vote accepted

If you can't live with selecting the solution node in the solution explorer and use a hotkey for File.TfsCheckIn, I guess that your only options is to use a macro like this and assign a hotkey for that:

Sub CheckInSolution()
    DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer).Activate()

    Dim fi As System.IO.FileInfo = New System.IO.FileInfo(DTE.Solution.FullName)
    Dim name As String = fi.Name.Substring(0, fi.Name.Length - fi.Extension.Length)

    DTE.ActiveWindow.Object.GetItem(name).Select(vsUISelectionType.vsUISelectionTypeSelect)
    DTE.ExecuteCommand("ClassViewContextMenus.ClassViewProject.TfsContextCheckIn")
End Sub
link|improve this answer
feedback

Actually, there are a whole bunch of commands available under Tools|Options|Environment|Keyboard, to which you can assign shortcuts. Some of them are:

  • File.TfsCheckIn
  • File.TfsCheckInSilent
  • TfsCheckInDynamicSilent
  • ...

I can't tell you exactly what is what and what is best for you to use. I guess there's some documentation about this out there - at least I hope so ;-)...

HTH!
Thomas

link|improve this answer
They are File specific, I'm looking for solution-wide. I don't want to bother on which file I'm on and commit only it. :( I've tried to google it with no luck, thats why question is here :) – Sly Oct 22 '10 at 9:16
Hmm. If that's the case, I don't have any other idea. Maybe you can get an answer if you post to one of the official MSDN forums, which are supported by MS staff. Usually they answer reasonably promptly... – Thomas Weller Oct 22 '10 at 9:33
I am using a hotkey for File.TfsCheckIn. File.TfsCheckIn is context specific. If you select a single file in the solution explorer it will check-in only that file but if you select the solution node in the solution explorer it will check-in everything below it. The same goes for folders in the Source Control Explorer. – Martin Hyldahl Oct 22 '10 at 14:32
feedback

Not feasible, unless you only run very little of TFS 2010.

TFS 2010 when properly used requires a lot more than just checking in - including attaching your checkin to the work items that it is realted to. A hotkey would make this impossible. In TFS you do not check in THAT often, only to complete items of work (or if they are very long sometimes on the site). I do about 4-5 checking per day and they CAN take time (integration, validation, documentation), so a hotkey would bring me nothing.

link|improve this answer
Do you think that in SVN commits are more frequent then in TFS? But Visual Svn provides easy interface for it... – Sly Oct 22 '10 at 8:19
How is a checkin in TFS different from one in SVN? You can choose to have different workflows, but there's nothing whatsoever that would enforce this. And the question was not about your personal working style... – Thomas Weller Oct 22 '10 at 8:37
Question was just about the ability to assign hotkeys. And you are right - Its Not About Style Of Working. – Sly Oct 22 '10 at 9:17
It is different becauseT TFS does a lot more. If you only ue the SVN equivalent htat is like asking how a fiat panda is different from a sports car. If you use TFS then you have to do a lot more on checkin than just checking in files, but the project quality goes up a lot with it. – TomTom Oct 22 '10 at 9:34
@TomTom. TFS as a whole does a lot more, because it is an ALM server with integrated source control. But I still don't get how TFS Source Control is different... – Thomas Weller Oct 22 '10 at 9:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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