반응형
1. flutter upgrade시에 에러
> flutter upgrade
Your flutter checkout has local changes that would be erased by upgrading. If you want to keep these changes, it is recommended that you stash them via "git stash" or else commit the changes to a local branch. If it is okay to remove local changes, then re-run this command with "--force".
작업하다보면 flutter 소스를 debug를 하게 되는데 이걸 수정하거나 건드려서 문제가 생기는 것입니다.
2. 해결 방안
--force를 붙이면 강제로 업그레이드를 진행합니다.
> flutter upgrade --force
반응형
'Dev > flutter' 카테고리의 다른 글
Visual Studio(VSCode) Android ADB WLAN 무선 디버깅 (0) | 2023.10.17 |
---|---|
[flutter] SliverGrid SliverGridDelegateWithMaxCrossAxisExtent (0) | 2023.03.09 |
[flutter] Widget build 이후 callback (0) | 2023.02.15 |
flutter pub upgrade (0) | 2023.02.07 |
[flutter] mouse point drag scroll (0) | 2022.12.21 |