How do I remove version tracking from a project cloned from git?

后端 未结 10 1341
太阳男子
太阳男子 2020-11-28 00:00

I want to remove all version tracking from a project\'s directory.

What is the correct method to do this?

Can I do a shell command such as:

r         


        
10条回答
  •  日久生厌
    2020-11-28 00:47

    In a Windows environment you can remove Git tracking from a project's directory by simply typing the below.

    rd .git /S/Q
    

提交回复
热议问题