Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This isn't the best programming question but lets face it, the server fault guys aren't well versed in git, so I think its more towards this audience.

Do I have to write a script to uninstall them?
How do I get them to go away, I want to switch to tortoise git, or portablegit in my shell, but I'm left with these annoying menu options.

share|improve this question

3 Answers

up vote 168 down vote accepted

64-Bit Windows

From a cmd.exe window, cd to "C:\Program Files (x86)\Git\git-cheetah" and run

regsvr32 /u git_shell_ext64.dll

32-Bit Windows

From a cmd.exe window, cd to "C:\Program Files\Git\git-cheetah" and run

regsvr32 /u git_shell_ext.dll

share|improve this answer
6  
File is git_shell_ext64.dll for a 64bit OS like Windows 7 tends to be – Matt Apr 20 '12 at 22:03
For newer versions of GitExtentions, follow the instructions here – The Scrum Meister yesterday

When you install msysgit there is an option for "Windows Explorer Integration" that you uncheck to not have them show up.

You can rerun the setup and uncheck the option, or uninstall and reinstall and uncheck it then.

share|improve this answer
6  
dude, that's not an answer .. – hasen j Mar 17 '10 at 4:21
5  
What would you like, a marquee tag? – Alex Moore Mar 17 '10 at 4:24
unfortunately that wasn't an option when it was installed, so I think I'm out of luck on it. – DevelopingChris Mar 17 '10 at 4:41
I know it's an option on the latest version, 1.7.0.2-preview20100309. It should be the 4th setup screen, right after choosing the installation directory. – Alex Moore Mar 17 '10 at 13:18
@hasen Hardly the same. He will probably update msysgit at some point so why hack around the registry with changes you will probably forget about? – Alex Moore Mar 18 '10 at 1:23
show 3 more comments

The best answer I can get after a little searching, is go figure, on a trilogy site.

http://www.howtogeek.com/howto/windows-vista/how-to-clean-up-your-messy-windows-context-menu/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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