pull request から不要な commit を取り除く
git rebase -i
で branch の枝別れ先を変更する。
git rebase -i {sha before the branches diverged}
https://github.com/{ author name }/{ repository name }/commits/master や、git log --graph --oneline
, tig
で変更先の SHA-1 ハッシュは確認する。
git rebase -i
で branch の枝別れ先を変更する。
git rebase -i {sha before the branches diverged}
https://github.com/{ author name }/{ repository name }/commits/master や、git log --graph --oneline
, tig
で変更先の SHA-1 ハッシュは確認する。