批量更新Git项目代码脚本
Posted song-wentao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量更新Git项目代码脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash echo "开始批量更新最新代码" for dir in `ls`; do if [ -d $dir ];then echo "-----------------"; cd $dir; echo "开始更新项目 $dir "; git fetch; echo "代码更新完成"; cd ../; fi done
以上是关于批量更新Git项目代码脚本的主要内容,如果未能解决你的问题,请参考以下文章
git项目初次push提示error: failed to push some refs to https://gitee.com/xxxx/gittest.git’解决方案 --九五小庞(代码片段