什么是在Android Studio中开发的Flutter项目的legit .gitignore?
这就是我目前所做的,但是当我在Android Studio中打开项目时,我无法启用Dart支持或浏览项目。
#flutter specific
.flutter-plugins
.DS_Store
.dart_tool/
.packages
.pub/
build/
android/app/google-services.json
.idea/
android/key.properties
pubspec.lock
doc/api/
#ios specific
ios/.generated/
ios/Podfile*
ios/Flutter/Debug.xcconfig
ios/Flutter/Release.xcconfig
ios/Runner.xcworkspace/contents.xcworkspacedata
#android specific
android/app/google-services.json
android/key.properties
# User-specific
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
.idea/modules.xml
.idea/*.iml
.idea/modules
*.iml
# File-based project format
*.iws
# IntelliJ
out/
字符串
6条答案
按热度按时间ryoqjall1#
这是由Android Studio自动生成的.gitignore,希望这就是你要找的:
字符串
r6l8ljro2#
您可以在Github here上的flutter官方项目中找到它:
字符串
这里有一些在修改
.gitgnore
文件时需要注意的要点,以确保Git始终跟踪正确的文件。1.在
.gitignore
文件中进行更改。1.运行
git rm -r --cached .
命令。1.运行
git add .
命令m1m5dgzv3#
VSCode提供了这一点,并且与android studio版本一样出色
字符串
xhv8bpkk4#
这里是一致的
.gitignore
为 dart 和Flutter项目所有编辑器https://github.com/flutter/flutter/issues/13892#issue-285842688
taor4pac5#
下面是一个来自Very Good Core cli的Flutter 2.2的legit.gitignore
字符串
9cbw7uwe6#
下面的
.gitignore
排除所有文件和文件夹,除了:lib/, pubspec.yaml and AndroidManifest.xml
即仅手动更改的文件:字符串
仅限本地使用。如果您发布到Github或其他共享存储库,请使用默认文件。