shell脚本自动更新git

创建一个sh脚本vim test.sh

#! /bin/bash
date +%Y%m%d%H%M%S >> /usr/local/html/pull.log
cd /usr/local/html/shopApp && git pull >> /usr/local/html/pull.log 2>&1

crontab -e 设置定时任务

crontab教程
https://www.runoob.com/w3cnote/linux-crontab-tasks.html

你可能感兴趣的:(shell脚本自动更新git)