1 2 3 4 5 6 7 |
git fetch upstream git merge upstream/<branch> git push <origin> <branch> git pull --strategy subtree --squash addon master --allow-unrelated-histories git commit -m "[addon] 1.0.2" git push <origin> <branch> |
1 2 3 4 5 6 7 |
git fetch upstream git merge upstream/<branch> git push <origin> <branch> git pull --strategy subtree --squash addon master --allow-unrelated-histories git commit -m "[addon] 1.0.2" git push <origin> <branch> |