If you ever want to change the title and descriptions associated with a patch and its revisions, we can always use the `rad patch edit` command. First off, we'll have to set up a patch and an updated revision: ``` $ git checkout -b changes $ touch README.md $ git add README.md $ git commit --message "Add README, just for the fun" [changes 03c02af] Add README, just for the fun 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 README.md ``` ``` (stderr) $ git push rad -o patch.message="Add README, just for the fun" HEAD:refs/patches ✓ Patch 89f7afb1511b976482b21f6b2f39aef7f4fb88a2 opened To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi * [new reference] HEAD -> refs/patches ``` ``` $ touch LICENSE $ git add LICENSE $ git commit -v -m "Define the LICENSE" [changes 8945f61] Define the LICENSE 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 LICENSE ``` ``` (stderr) $ git push -f -o patch.message="Add License" ✓ Patch 89f7afb updated to revision 5d78dd5376453e25df5988ec86951c99cb73742c To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi 03c02af..8945f61 changes -> patches/89f7afb1511b976482b21f6b2f39aef7f4fb88a2 ``` Let's look at the patch, to see what it looks like before editing it: ``` $ rad patch show 89f7afb ╭─────────────────────────────────────────────────────────────────────╮ │ Title Add README, just for the fun │ │ Patch 89f7afb1511b976482b21f6b2f39aef7f4fb88a2 │ │ Author z6MknSL…StBU8Vi (you) │ │ Head 8945f6189adf027892c85ac57f7e9341049c2537 │ │ Branches changes │ │ Commits ahead 2, behind 0 │ │ Status open │ ├─────────────────────────────────────────────────────────────────────┤ │ 8945f61 Define the LICENSE │ │ 03c02af Add README, just for the fun │ ├─────────────────────────────────────────────────────────────────────┤ │ ● opened by z6MknSL…StBU8Vi (you) (03c02af) now │ │ ↑ updated to 5d78dd5376453e25df5988ec86951c99cb73742c (8945f61) now │ ╰─────────────────────────────────────────────────────────────────────╯ ``` We can change the title and description of the patch itself by using a multi-line message (using two `--message` options here): ``` $ rad patch edit 89f7afb --message "Add Metadata" --message "Add README & LICENSE" --no-announce $ rad patch show 89f7afb ╭─────────────────────────────────────────────────────────────────────╮ │ Title Add Metadata │ │ Patch 89f7afb1511b976482b21f6b2f39aef7f4fb88a2 │ │ Author z6MknSL…StBU8Vi (you) │ │ Head 8945f6189adf027892c85ac57f7e9341049c2537 │ │ Branches changes │ │ Commits ahead 2, behind 0 │ │ Status open │ │ │ │ Add README & LICENSE │ ├─────────────────────────────────────────────────────────────────────┤ │ 8945f61 Define the LICENSE │ │ 03c02af Add README, just for the fun │ ├─────────────────────────────────────────────────────────────────────┤ │ ● opened by z6MknSL…StBU8Vi (you) (03c02af) now │ │ ↑ updated to 5d78dd5376453e25df5988ec86951c99cb73742c (8945f61) now │ ╰─────────────────────────────────────────────────────────────────────╯ ``` Notice that the `Title` is now `Add Metadata`, and the patch now has a description `Add README & LICENSE`. If we want to change a specific revision's description, we can use the `--revision` option: ``` $ rad patch edit 89f7afb --revision 5d78dd5 --message "Changes: Adds LICENSE file" --no-announce $ rad patch show 89f7afb ╭─────────────────────────────────────────────────────────────────────╮ │ Title Add Metadata │ │ Patch 89f7afb1511b976482b21f6b2f39aef7f4fb88a2 │ │ Author z6MknSL…StBU8Vi (you) │ │ Head 8945f6189adf027892c85ac57f7e9341049c2537 │ │ Branches changes │ │ Commits ahead 2, behind 0 │ │ Status open │ │ │ │ Add README & LICENSE │ ├─────────────────────────────────────────────────────────────────────┤ │ 8945f61 Define the LICENSE │ │ 03c02af Add README, just for the fun │ ├─────────────────────────────────────────────────────────────────────┤ │ ● opened by z6MknSL…StBU8Vi (you) (03c02af) now │ │ ↑ updated to 5d78dd5376453e25df5988ec86951c99cb73742c (8945f61) now │ ╰─────────────────────────────────────────────────────────────────────╯ ``` We can see that this didn't affect the patch's description, but currently there's no way of seeing a revision's description in the CLI.