feat: 完成调研大纲和技术选股方法系统性调研 - 张飞

This commit is contained in:
cfdaily
2026-03-22 11:40:42 +08:00
parent 7a210caba6
commit c5ea9c813a
3 changed files with 333 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# sanguo_quant_live 快捷提交脚本
# 用法:./scripts/pull-commit-push.sh "commit message"
# 拉取最新
git pull
# 添加所有修改
git add .
# 提交
git commit -m "$1"
# 推送
git push
echo "✅ 提交推送完成"