Anyone know how to create a toolbar in Visual Studio 2010 to use with Git (TortoiseGit)?

Thanks

SurfRat

link|improve this question
This is a site for asking questions, not for posting "how to configure VS" tips. – nbt May 29 '11 at 19:18
This is the wrong way to get your reputation above 10. Asking a question might be a better means. Just sayin' – Charles Caldwell May 29 '11 at 19:19
Don't hesitate to copy/repost "my" answer, making it yours. I will then delete my post. In the meantime, this is how you can contribute to SO while respecting the spirit of Q&A: with a question and an answer ;) (since it is ok to answer one own's question) – VonC May 29 '11 at 20:11
Thanks, I edited my answer to be a question. I will post the answer in the morning as I can't reply to my own answer for 7 hours. – SurfRat May 29 '11 at 21:40
I just deleted my answer, and re-formatted yours. – VonC May 30 '11 at 11:32
show 1 more comment
feedback

1 Answer

up vote 8 down vote accepted

enter image description here

I wanted a Git toolbar in Visual Studio and I found no solution to this so I thought I would share this with you.

I installed the Git Source Control Provider and got Git working (via TortoiseGit) with the right click context menu. This was tedious and rather ugly as all the TortoiseGit commands had the same icon.

I then added external tools to Visual Studio...

enter image description here

enter image description here

The external tool commands for TortoiseGit are as follows:

Title: Git Push
Command: C:\Program Files\TortoiseGit\bin\TortoiseProc.exe
Arguments: /path:"$(SolutionDir)" /command:push

Title: Git Commit
Command: C:\Program Files\TortoiseGit\bin\TortoiseProc.exe
Arguments: /path:"$(SolutionDir)" /command:Commit

Title: Git Sync
Command: C:\Program Files\TortoiseGit\bin\TortoiseProc.exe
Arguments: /path:"$(SolutionDir)" /command:Sync

Title: Git Revert
Command: C:\Program Files\TortoiseGit\bin\TortoiseProc.exe
Arguments: /path:"$(SolutionDir)" /command:Revert

Title: Git Log
Command: C:\Program Files\TortoiseGit\bin\TortoiseProc.exe
Arguments: /path:"$(SolutionDir)" /command:Log

Once the external commands were created I created my toolbar. Visual Studio 2010 out of the box will not allow you to have an image in your toolbar so I installed the Command Image Changing Extension.

Here are the icons I created enter image description here enter image description here enter image description here enter image description here enter image description here

The end result is a toolbar with the commands (showing only icons) that I need.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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