Last active
April 14, 2023 14:41
-
-
Save kurotaky/6435921 to your computer and use it in GitHub Desktop.
Pull Request 後にfork 元リポジトリのmasterの変更を rebase で追随してpush する。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hippo-password-strength の master の最新の変更を取り込んでPRする。 | |
(すでにPR出している場合) | |
``` | |
git remote add upstream [email protected]:kurotaky/hippo-password-strength.git | |
git checkout master | |
git pull upstream master | |
git checkout using-img-src | |
git rebase master using-img-src | |
git push -f origin using-img-src | |
``` | |
または --no-ff でマージして普通にpush する。 | |
参考: http://d.hatena.ne.jp/hnw/20110528 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment