1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 10:38:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/get.bat
2022-08-29 22:06:20 +08:00

20 lines
362 B
Batchfile

git checkout master
git pull
python leetcode.py
python leetcode-cn.py
git status
echo "将要推送到 Git 仓库"
pause
git add .
git commit -m "update"
git gc
git remote add origin https://gitee.com/coder-xiaomo/leetcode-problemset
git push origin
git remote add github https://github.com/coder-xiaomo/leetcode-problemset
git push github
pause