1 問(wèn)題
git checkout V1
提示錯(cuò)誤如下
error: The following untracked working tree files would be overwritten by checkout:
flutter_module/pubspec.lock
Please move or remove them before you switch branches.
Aborting
?
?
?
?
2 解決辦法
git clean -df ../flutter_module/pubspec.lock
然后再
git checkout V1
?