git-pr
created pr with
8.1
pr_reviewed
cmds
checkout latest patchset:
ssh pr.pico.sh print 8 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 8.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 8
Patchset
8.1
docs: fix typo / minor rewording in readme
Jeremy Clarke
2024-07-20T14:59:21ZSemantic diff summary
0 added,
0 modified,
0 signature changed,
0 removed
across 0 analyzed files
(1 file skipped: unsupported file type)
+5
-5
README.md
#
| ... | ... | @@ -124,11 +124,11 @@ git push origin main | |
| 124 | 124 | # Done! | |
| 125 | 125 | ``` | |
| 126 | 126 | ||
| 127 | - | The fundamental collaboration tool here is `format-patch`. Whether you a | |
| 128 | - | submitting code changes or you are reviewing code changes, it all happens in | |
| 129 | - | code. Both contributor and owner are simply creating new commits and generating | |
| 130 | - | patches on top of each other. This obviates the need to have a web viewer where | |
| 131 | - | the reviewer can "comment" on a line of code block. There's no need, apply the | |
| 127 | + | The fundamental collaboration tool here is `format-patch`. Whether you are | |
| 128 | + | submitting code changes or reviewing them, it all happens in code. Both | |
| 129 | + | contributor and owner are simply creating new commits and generating patches | |
| 130 | + | on top of each other. This obviates the need to have a web viewer where the | |
| 131 | + | reviewer can "comment" on a line of code block. There's no need, apply the | |
| 132 | 132 | contributor's patches, write comments or code changes, generate a new patch, | |
| 133 | 133 | send the patch to the git server as a "review." This flow also works the exact | |
| 134 | 134 | same if two users are collaborating on a set of changes. |