Flutter 工程目录结构

在git中如果想忽略掉某个文件,不让这个文件提交到版本库中,可以使用修改根目录中 .gitignore 文件的方法(如无,则需自己手工建立此文件)。

Miscellaneous

*.class

*.lock

*.log

*.pyc

*.swp

.DS_Store

.atom/

.buildlog/

.history

.svn/

IntelliJ related

*.iml

*.ipr

*.iws

.idea/

The .vscode folder contains launch configuration and tasks you configure in

VS Code which you may wish to be included in version control, so this line

is commented out by default.

.vscode/

Flutter/Dart/Pub related

**/doc/api/

.dart_tool/

你可能感兴趣的:(flutter)