#untracked

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

在IDEA中进行分支切换时,出现如此错误,导致无法正常切换:error:Thefollowinguntrackedworkingtreefileswouldbeoverwrittenbycheckout通过错误提示可知,是由于一些untrackedworkingtreefiles引起的问题。所以只要解决了这些untra...

git 清除所有untracked file

上次合并分支的时候,出现了一些没见过的文件,有.orig等等。如下图: 接下来,就是git的神奇操作命令:git clean -f 将所有untrackedfile一次性删除...