git错误解决-Your local changes to the following files would be overwritten by checkout

1.使用idea开发时候,git切换分支会抛出异常如下:

git错误解决-Your local changes to the following files would be overwritten by checkout_第1张图片
提示错误信息是:当前分支有未跟踪的文件,checkout 命令会覆盖它们,请缓存( stash )或者提交( commit )。

2.解决方法

2.1 第一种解决办法

git错误解决-Your local changes to the following files would be overwritten by checkout_第2张图片

2.2 第二种解决办法

git错误解决-Your local changes to the following files would be overwritten by checkout_第3张图片

3.使用git命令

3.1 第一种解决办法

//第一种方式 存到暂存区
git add.
git stash 
//取出的时候使用 
git stash pop

//第二种方式 发起一个commit 存到提交历史
git add.
git commit -m "commit message"

3.2 第二种解决办法

git clean n  //这个是清除文件预览
git clean -f //强制清除文件

4.git本地管理有三个部分

名称 说明
工作区(Working Directory) 我们直接编辑的文件部分
暂存区(Staged Snapshot) 文件执行 git add . 后存的地方
版本库区 (Commit History) 文件执行 git commit . 后存的地方

你可能感兴趣的:(常见bug或者问题)