I made a disastrous mistake with “create git repo here” - how do I rectify/undo it?

后端 未结 4 2160
遇见更好的自我
遇见更好的自我 2020-12-11 10:27

I am new to Git. I have created an account on Bitbucket and downloaded TortoiseGit.

I\'m on Windows 7 and on the desktop I right clicked and thought \"add git repo h

相关标签:
4条回答
  • 2020-12-11 10:48

    With TortoiseGit 1.8.7.1, a warning message will be added when creating repository on special folders, such as Desktop, drive root, UNC root, User Profile, Windows Directory, system32, Program Files

    The Create Repository menu item may be clicked by mistake.

    Warning

    0 讨论(0)
  • 2020-12-11 10:52

    Try this

    git reset HEAD *
    

    It would unstage all of your files and none of your changes will go away.

    0 讨论(0)
  • 2020-12-11 11:05

    Do not run git reset --hard that will delete all the files. Delete the hidden .git folder.

    Press Win + R type in cmd and press enter.

    cd Desktop
    rmdir /S .git
    
    0 讨论(0)
  • 2020-12-11 11:08

    Make sure to turn on Show hidden files in Explorer. Then delete .git directory in your desktop

    0 讨论(0)
提交回复
热议问题