如何添加 JoyandAI 仓库
以 lerobot 项目为例。假设已经 clone lerobot 官方仓库 https://github.com/huggingface/lerobot.git,一般为 origin。
1. 添加 JoyandAI 远程仓库
1.1 增加 JoyandAI 仓库
bash
git remote add joyandai https://github.com/JoyandAI/lerobot.git1.2 拉取分支到本地
bash
git fetch joyandai main1.3 checkout 到该分支
bash
git checkout joyandai/main2. 如果要合并修改提交到 main 分支
2.1 切换到 main 分支
bash
git checkout main2.2 合并 joyandai/main
bash
git merge joyandai/main