My normal terminal command line has suddenly disappeared and has been replaced by this git command line ➜ ~ git:(master) ✗
.
How do I get rid of this an
I'm assuming you entered "git init" like I did. It took me a while to figure this out, but when you entered "git init" you created a hidden git folder named ".git".
You can see the folder by going to your home directory and typing "ls -a".
Simply remove the file (rm -rf .git), and the prompt will magically disappear.