How do I remove msysgit's right click menu options?

前端 未结 8 849

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.

I want to sw

8条回答
  •  囚心锁ツ
    2020-12-12 09:01

    64-Bit Windows

    From a cmd.exe window, run these commands:

    cd "C:\Program Files (x86)\Git\git-cheetah"
    regsvr32 /u git_shell_ext64.dll
    

    32-Bit Windows

    From a cmd.exe window, run these commands

    cd "C:\Program Files\Git\git-cheetah"
    regsvr32 /u git_shell_ext.dll
    

    Windows 10

    If you are on Windows 10 and the previous methods did not work try to uninstall the application and reinstall it. But be careful during the installation process unchecking Windows explorer integration

提交回复
热议问题