git使用过程中遇到的问题及处理方法

时间:2023-03-08 21:08:05

1. Your local changes to the following files would be overwritten by checkout:......Please commit your changes or stash them before you switch branches

*******$ git checkout -b developer origin/developer
error: Your local changes to the following files would be overwritten by checkout:
...
...
Please commit your changes or stash them before you switch branches.
Aborting

解决方法:链接

git stash后重新运行命令

2.