简单的Git签到脚本

#!/bin/sh
a=`date +%Y%m%d%H%M%S`
echo $a
cd /home/code8086/repos/github/code8086_note
echo $a >> out.txt
git add .
git status
git commit -am $a
git push


cd /home/code8086/repos/gitosc/note
echo $a >> out.txt
git add .
git status
git commit -am $a
git push


你可能感兴趣的:(github,shell,git,bash,sh)