去除本地版本

1、进入项目文件夹

2、右键选择git bash here或者按Ctrl+R输入cmd,在cmd窗口输入命令:

  • 例:Git
   find . -name ".git" | xargs rm -Rf

   find . -name ".gitignore" | xargs rm -Rf

   find . -name ".gitattributes" | xargs rm -Rf
  • SVN同理

你可能感兴趣的:(去除本地版本)