How do I completely remove Github for Mac along with its Git installation and all?

11,622

Solution 1

I belive this Github gist worked:

https://gist.github.com/naomik/11245234

Solution 2

To delete git, just drag and drop the folder from the /Application/Git.app to the trash bin. Then open a Terminal (/Application/Utilities/Terminal) and copy paste this lines (one by one) :

rm -rf /usr/local/git
rm /etc/paths.d/git
rm /etc/manpaths.d/git

Then restart your computer and voilà

Share:
11,622
sr3
Author by

sr3

Updated on September 12, 2022

Comments

  • sr3
    sr3 over 1 year

    I'm new to OSX, so I don't want to just go around deleting things without really knowing what's up. What's the best way to go about obliterating Github and its Git from my machine?

    Thanks!