其他分享
首页 > 其他分享> > The following untracked working tree files would be overwritten by checkout

The following untracked working tree files would be overwritten by checkout

作者:互联网

当使用git checkout [branch name] 进行分支切换的时候,报了异常:

error: The following untracked working tree files would be overwritten by checkout:

好多网上推荐的方法是使用git clean -d -fx ,这里要提醒下这命令要慎用,因为执行了这个命令之后,会将未跟踪的文件删除掉。
所以单个文件可以使用git checkout -- [file]命令,或者是将某些文件或目录,添加到文件.gitignore中即可。总之最初的两个命令要尽量少使用。

标签:files,overwritten,git,working,文件,命令,untracked,checkout
来源: https://www.cnblogs.com/qichao123/p/16588435.html