一、完整流程一览
【Fork 场景】完整开发流程(含原作者更新 + 自己修改)
git clone https://github.com/你的用户名/VLM-R1.git
cd VLM-R1
git remote add upstream https://github.com/om-ai-lab/VLM-R1.git
git fetch upstream
git checkout main
git merge upstream/main
git push origin main
git checkout -b my-feature
git add .
git commit -m "添加新功能 / 修复 bug"
git push origin my-feature
【非 Fork 场景】完整开发流程(用 clone + 自建仓库)
git clone https://github.com/om-ai-lab/VLM-R1.git
cd VLM-R1
git remote set-url origin https://github.com/你的用户名/VLM-R1.git
git remote add upstream https://github.com/om-ai-lab/VLM-R1.git
git fetch upstream
gi