Add/Remove Git right-click menu under Windows

Don't show the right-click menu:

method 1:

   When installing, choose not to add a right-click menu.

Method 2 (absolutely works):

   run cmd    

   Windows 64 Enter the command (the address is the git installation address)

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

   Windows 32 Enter the command (the address is the git installation address)

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

 

To restore the right-click menu:

   run cmd    

   Windows 64 Enter the command (the address is the git installation address)

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

   Windows 32 Enter the command (the address is the git installation address)

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

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326679733&siteId=291194637