I can't uninstall Git
Mia Lopez
I was researching Git so I downloaded the Windows version to test it out on a repository on GitHub. After about 30 minutes I couldn't work out how to use it, so I decided I probably wouldn't need a distributed repository as our projects aren't that big and went back to what I know - SVN.
(I thought) I uninstalled all the Git related stuff I'd put on my PC, but have now got an irritating problem where if I open any folders I get an error message saying:
Hello
[ERROR] Could not find git path
As you can imagine, this is a real pain, does anyone have any ideas on how to fix it?
14 Answers
This would happen because
Uninstall was unable to delete the file "C:\Program Files\Git\git-cheetah\git_shell_ext.dll"
The correct fix would be to unregister the dll and delete it
- open the Command Prompt window
- execute > regsvr32 -s -u git_shell_ext.dll
- delete "C:\Program Files\Git\git-cheetah\git_shell_ext.dll"
If that does not work here's an ugly workaround:
- Open "Task Manager" and go to Processes
- Find explorer.exe and click end process
- Choose File > Run in "Task Manager" and type 'cmd' and click OK to open "Command Prompt" and cd to "C:\Program Files\Git\git-cheetah"
- Delete git_shell_ext.dll
- Restart
be sure to clean-up after reboot, remove "Git" folder from "C:\Program Files"
3You may want to have a look at this, it shows what shell extensions are installed and can help to remove problematic items:
Incidentally, you should have given GIT a chance - it takes a while, but the payback is worth it.
How To Fix Error Could Not find The Git Path ?
- Restart Your System And Press F8 Before Booting To Windows.
- Select Safe Mode
- select Administrator User
- go to c://program Files/
- Delete Git Folder
And Then Restart
I would appreciate feedback if this solved your problem
1To solve this problem I needed to stop the service and its dependence:
- Start>>Run>>cmd>>tasklist /M >> c:\Documents and Settings\"Your user"\Desktop\tasklist.txt
- Open the generated file on your Desktop
- Press Crtl+F
- Find for git
- The process need to be closed is "explorer"
- Stop "explorer" process
- Enter the folder tha contains it
- delete Delete git_shell_ext.dll
- Reboot the system