删除 lastUpdated 和 remote 脚本
2020-06-23 本文已影响0人
林万程
删除所有 lastUpdated 和 remote 可以解决找不到依赖包的问题。
手动搜索不便,写了个脚本,放到仓库执行即可。
delete_lastUpdated_and_remote.sh
#!/bin/bash
find $(cd $(dirname $0); pwd) -name "*.lastUpdated" -type f -print -exec rm -rf {} \;
find $(cd $(dirname $0); pwd) -name "_remote.repositories" -type f -print -exec rm -rf {} \;
一般电脑装了 git 后 Linux 的命令也能执行,这里就不写 Windows 版本了。