Sync code
- Add the
soybean-admingit address to your own repository
bash
git remote add otherOrigin https://github.com/soybeanjs/soybean-admin.git- Pull the code
bash
git fetch otherOrigin- Pick the git commit that needs to be updated through
cherry-pick
bash
git cherry-pick [commit id]- When there is a conflict in the code, resolve the conflict, then excute the following command, and then execute
vimto save
bash
git cherry-pick --continue
vimsave operation:esc,:,wq,enter