私はこれが新しい質問ではないことを知っていますが、ここでは多くの解決策を試してみましたが、何も私にとってうまくいかないようです。コミットごとに別々のプルリクエストを作成する
私はそれに貢献するプロジェクトをフォークしました。私は複数のコミットを行い、それらはすべて1つのプルリクエストにのみ含まれています。
コミットごとに新しいプルリクエストを作成したいのですが、新しいブランチを作成しようとしましたが、特定のコミットを賢明に選択しても動作しないようです。
- 私はリモートブランチより4つ先にコミットするマスターブランチを持っています。 https://github.com/Gaurang033/Selenium2Library
- マスターから新しいブランチを作成すると、これらの変更もすべてコピーされます。ブランチを作成することも役に立ちません。ここで https://github.com/Gaurang033/Selenium2Library/tree/click_elements
git log --all --oneline --graph --decorate
からいくつかの出力です:
* 340fb9e (origin/click_elements) Feature Request - Click Elements #585
* 8a8f485 (HEAD -> master, origin/new_locator, origin/master, origin/HEAD) Merge remote-tracking branch 'upstream/master'
|\
| * 2466942 (upstream/master) Libdoc updates - link to project and fix 404 (#668)
* | e66862f Added method to find element by class name #673
* | f8ec2ed Feature Request - Click Elements #585
* | 264e38c Added following keywords and their acceptance test cases to fix the issue #463 table_cell_should_not_contain table_column_should_not_contain table_footer_should_not_contain table_header_should_not_contain table_row_should_not_contain table_should_not_contain
| * [truncated: more commits on master in original repo...]
|/
* ef5d24d Merge pull request #539 from ReadmeCritic/master
誰かに私はこの問題を解決する方法を教えてください?
これはそれです。重要な点は、単一のPRに含まれる各コミットまたは一連のコミットが、親コミットとしてorigin/masterを持たなければならないことです。 –