场景需求
需要判断是否有新内容更新,确定有更新之后执行
pull
操作,然后pull
成功之后再将新内容进行复制到其他地方文章来源地址https://www.toymoban.com/news/detail-660988.html
#!/bin/bash
pushd /data/git/coding/GoToinstall
git remote show origin | grep 最新
if [[ $? -eq 0 ]];then
echo "Is Latest"
exit 0
fi
git remote show origin | grep "up to date"
if [[ $? -eq 0 ]];then
echo "Is Latest"
exit 0
fi
git pull
python3 update_to_html.py
效果
[root@bxy1 shell]# ./GoToInstall.sh
/data/git/coding/GoToinstall /data/auto_upgrade/shell
master 推送至 master (最新)
Is Latest
[root@bxy1 shell]#
文章来源:https://www.toymoban.com/news/detail-660988.html
到了这里,关于Git判断本地是否最新的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!