Git问题集锦(2)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wxt15708432837/article/details/89641865

error: Your local changes to the following files would be overwritten by checkout:
/src/main/jniLibs/armeabi-v7a/libA.so
/src/main/jniLibs/armeabi-v7a/libB.so
/src/main/jniLibs/armeabi-v7a/libC.so
Please commit your changes or stash them before you switch branches.
Aborting
解决办法:
git status
git stash备份—最后需要用的时候git stash pop
git status
git checkout

猜你喜欢

转载自blog.csdn.net/wxt15708432837/article/details/89641865