Skip to Content
🎉 Nextra 4.0 is released. dimaMachina is looking for a new job or consulting.
指引同步代码

同步代码

  1. 在自己的仓库里面新增soybean-admin的git地址
git remote add otherOrigin https://github.com/soybeanjs/soybean-admin.git
  1. 拉取代码
git fetch otherOrigin
  1. 通过cherry-pick挑选需要更新的git提交
git cherry [commit id]
  1. 代码有冲突时, 先解决冲突,然后执行下面命令,再执行vim保存
git cherry-pick --continue

vim保存操作: esc:, wq, enter回车

Last updated on