how to undo git init? -


i clicked git init in users folder mistake, , in users folder has been turned blue question mark.

how can fix this?

check documentation git init

when run git init, new .git folder created on project directory other subdirectories objects, refs/heads, refs/tags , since dot file (.git)its hidden default, if running linux following.

 cd myfolder  rm -rf .git 

if running windows, there bunch of tutorials show hidden files, this example


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -