We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd6d674 commit d7d1fdeCopy full SHA for d7d1fde
1 file changed
contributing/workflow.md
@@ -199,6 +199,16 @@ Latest commit only:
199
> git push --force-with-lease origin your-branch
200
```
201
202
+Only commits in PR:
203
+```console
204
+> git switch your-branch
205
+> git rebase -i HEAD~3 --exec 'git commit --amend --no-edit --no-verify -S'
206
+> git push --force-with-lease origin your-branch
207
+```
208
+
209
+> [!NOTE]
210
+> `HEAD~3` is defined have 3 commit in PR, change number *3* with the number you have in commit.
211
212
All commits:
213
```console
214
> git switch your-branch
0 commit comments