Skip to content

Instantly share code, notes, and snippets.

@kurotaky
Last active April 14, 2023 14:41
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kurotaky/6435921 to your computer and use it in GitHub Desktop.
Save kurotaky/6435921 to your computer and use it in GitHub Desktop.
Pull Request 後にfork 元リポジトリのmasterの変更を rebase で追随してpush する。
hippo-password-strength の master の最新の変更を取り込んでPRする。
(すでにPR出している場合)
```
git remote add upstream git@github.com: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