AutoPull/README.md
2023-02-20 21:20:52 +08:00

25 lines
382 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AutoPull
自写定时执行git pull的工具 by axibug.com
TODO
补充Linux版本
dotNet 版本: .Net 7.0.2
# 配置文件说明
同级目录下创建config.cfg
内容范例如下:若配置一个 每间隔30分钟 用git pull命令拉取一次,D:/ABC目录和D:/123目录
{
"IntervalMinute":30,
"GitCMD":"pull",
"paths":[
"D:/ABC",
"D:/123",
]
}