开发者

Does git create files/folders in the project tree?

开发者 https://www.devze.com 2023-02-10 01:44 出处:网络
Does git create any files/folders (hidden?) in the project tree at all? 开发者_如何学编程 If so, is there a way to export all the raw files and not git related files?Git creates a single .git director

Does git create any files/folders (hidden?) in the project tree at all?

开发者_如何学编程

If so, is there a way to export all the raw files and not git related files?


Git creates a single .git directory in the root of the project. You can create additional git-specific files like .gitignore and .gitmodules, but by default only the .git directory will be present.

There are many ways to 'export' your project; simply deleting the .git directory is probably the simplest.

0

精彩评论

暂无评论...
验证码 换一张
取 消