mirror of
https://github.com/flutter/flutter
synced 2024-11-05 18:37:51 +00:00
d3e771c80b
Fixes https://github.com/flutter/flutter/issues/128635
In 1fd84f88e9
, we renamed the `.pub-cache` entry in the `.gitignore` file to `.pub-preload-cache`, and ensured the packaging script was now populating that directory. However, for users who already had this directory from downloading an earlier archive but used `flutter upgrade` to get the latest code, they now had a `.gitignore` file that was no longer ignoring their `.pub-cache` directory.
Now, when these users try to `flutter upgrade` again, the tool tries to verify if their checkout is clean, and will exit early if not directing the user to either stash or commit these changes, or do `flutter upgrade --force` which will try to update their branch anyway (and which would succeed since there would be no git conflict). These change adds back the `.pub-cache` entry to `.gitignore`, which won't retroactively fix broken releases, but will at least ensure if they `flutter upgrade --force` once to get this fix, they won't need to again.
138 lines
2.7 KiB
Text
138 lines
2.7 KiB
Text
# Do not remove or rename entries in this file, only add new ones
|
|
# See https://github.com/flutter/flutter/issues/128635 for more context.
|
|
|
|
# Miscellaneous
|
|
*.class
|
|
*.lock
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Visual Studio Code related
|
|
.classpath
|
|
.project
|
|
.settings/
|
|
.vscode/*
|
|
|
|
# Flutter repo-specific
|
|
/bin/cache/
|
|
/bin/internal/bootstrap.bat
|
|
/bin/internal/bootstrap.sh
|
|
/bin/mingit/
|
|
/dev/benchmarks/mega_gallery/
|
|
/dev/bots/.recipe_deps
|
|
/dev/bots/android_tools/
|
|
/dev/devicelab/ABresults*.json
|
|
/dev/docs/doc/
|
|
/dev/docs/api_docs.zip
|
|
/dev/docs/flutter.docs.zip
|
|
/dev/docs/lib/
|
|
/dev/docs/pubspec.yaml
|
|
/dev/integration_tests/**/xcuserdata
|
|
/dev/integration_tests/**/Pods
|
|
/packages/flutter/coverage/
|
|
version
|
|
analysis_benchmark.json
|
|
|
|
# packages file containing multi-root paths
|
|
.packages.generated
|
|
|
|
# Flutter/Dart/Pub related
|
|
**/doc/api/
|
|
.dart_tool/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
**/generated_plugin_registrant.dart
|
|
.packages
|
|
.pub-preload-cache/
|
|
.pub-cache/
|
|
.pub/
|
|
build/
|
|
flutter_*.png
|
|
linked_*.ds
|
|
unlinked.ds
|
|
unlinked_spec.ds
|
|
|
|
# Android related
|
|
**/android/**/gradle-wrapper.jar
|
|
.gradle/
|
|
**/android/captures/
|
|
**/android/gradlew
|
|
**/android/gradlew.bat
|
|
**/android/local.properties
|
|
**/android/**/GeneratedPluginRegistrant.java
|
|
**/android/key.properties
|
|
*.jks
|
|
|
|
# iOS/XCode related
|
|
**/ios/**/*.mode1v3
|
|
**/ios/**/*.mode2v3
|
|
**/ios/**/*.moved-aside
|
|
**/ios/**/*.pbxuser
|
|
**/ios/**/*.perspectivev3
|
|
**/ios/**/*sync/
|
|
**/ios/**/.sconsign.dblite
|
|
**/ios/**/.tags*
|
|
**/ios/**/.vagrant/
|
|
**/ios/**/DerivedData/
|
|
**/ios/**/Icon?
|
|
**/ios/**/Pods/
|
|
**/ios/**/.symlinks/
|
|
**/ios/**/profile
|
|
**/ios/**/xcuserdata
|
|
**/ios/.generated/
|
|
**/ios/Flutter/.last_build_id
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Flutter.podspec
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/ephemeral
|
|
**/ios/Flutter/app.flx
|
|
**/ios/Flutter/app.zip
|
|
**/ios/Flutter/flutter_assets/
|
|
**/ios/Flutter/flutter_export_environment.sh
|
|
**/ios/ServiceDefinitions.json
|
|
**/ios/Runner/GeneratedPluginRegistrant.*
|
|
|
|
# macOS
|
|
**/Flutter/ephemeral/
|
|
**/Pods/
|
|
**/macos/Flutter/GeneratedPluginRegistrant.swift
|
|
**/macos/Flutter/ephemeral
|
|
**/xcuserdata/
|
|
|
|
# Windows
|
|
**/windows/flutter/generated_plugin_registrant.cc
|
|
**/windows/flutter/generated_plugin_registrant.h
|
|
**/windows/flutter/generated_plugins.cmake
|
|
|
|
# Linux
|
|
**/linux/flutter/generated_plugin_registrant.cc
|
|
**/linux/flutter/generated_plugin_registrant.h
|
|
**/linux/flutter/generated_plugins.cmake
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# Symbols
|
|
app.*.symbols
|
|
|
|
# Exceptions to above rules.
|
|
!**/ios/**/default.mode1v3
|
|
!**/ios/**/default.mode2v3
|
|
!**/ios/**/default.pbxuser
|
|
!**/ios/**/default.perspectivev3
|
|
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|
|
!/dev/ci/**/Gemfile.lock
|
|
!.vscode/settings.json
|