Uninitialize git repository

后端 未结 4 861
孤街浪徒
孤街浪徒 2021-02-01 15:40

I have Initialized a git repository and have made some commit in that now for some reason I do not want to track any files in it and want to remove git from my local repo. Is th

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-01 16:11

    git stores all the repository related data in a folder named ".git" inside your repository folder. So you just want to keep your files but change it into a "not-git-repository". Warning: this is irreversible!

    cd path/to/repo
    rm -rf .git
    

    The only files that might remain are hidden ".gitignore" files (but only if you added them yourself or using some tool like eclipse). To remove them:

    find . -name ".gitignore" | xargs rm
    

提交回复
热议问题