1
Home
tls edited this page 2023-02-01 05:29:19 +00:00
# 目标-1
goal=99999
# 已有commit
int=60000
while(( $int<=$goal ))
do
let "int++"
# 删除
rm README.md
# 写入
echo $int > README.md
#提交
git add README.md
git commit -m $int
done
git push