echo "提交之前检查"; if grep -v '//' go.mod | grep -q -E 'git.cestong.com.cn/cecf/cecf-golib\s*=>' ; then echo "提交前go.mod应该避免使用本地依赖"; echo "请修改后重新提交"; exit 1 fi if grep -v '//' go.mod | grep -q -E 'git.cestong.com.cn/cecf/hx-mobile-server-api\s*=>' ; then echo "提交前go.mod应该避免使用本地依赖"; echo "请修改后重新提交"; exit 1 fi echo "检查完成,没有错误"