1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| git remote -v git remote set-url origin https://github.com/Zane-Jiang/tpu-mlir.git git remote add upstream https://github.com/sophgo/tpu-mlir.git
git fetch upstream git checkout main git merge upstream/main git push origin main
git fetch upstream git checkout my-feature git rebase upstream/main git push --force-with-lease
git checkout my-feature
git commit -am "fix review comments" git push
git fetch upstream pull/244/head:nanobind-migrate-pr-ref git checkout -b pr-branch-rebase master git cherry-pick <commit-hash>
|