XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Add update.py

c2fd823c
hlohaus <983577+hlohaus@users.noreply.github.com>
提交于

代码差异

2 个文件 +1 -2
Modified .gitignore +0 -1
@@ -29,7 +29,6 @@ __pycache__/
29 29 build
30 30
31 31 test.py
32 update.py
33 32 cookie.json
34 33 notes.txt
35 34 close_issues.py
Modified etc/tool/update.py +1 -1
@@ -8,7 +8,7 @@ if __name__ == "__main__":
8 8 exit(0)
9 9 command = ["git", "fetch"]
10 10 call(command, stderr=STDOUT)
11 command = ["git", "reset", "--hard", "master"]
11 command = ["git", "reset", "--hard"]
12 12 call(command, stderr=STDOUT)
13 13 command = ["git" ,"pull", "origin", "main"]
14 14 call(command, stderr=STDOUT)