cli: add caching commands for patch and issue
modified radicle-cli/src/commands/issue.rs
@@ -1,3 +1,6 @@
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -44,6 +47,7 @@ Usage
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -85,6 +89,7 @@ pub enum OperationName {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -142,6 +147,9 @@ pub enum Operation {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -341,6 +349,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -397,6 +406,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -553,6 +563,10 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
added radicle-cli/src/commands/issue/cache.rs
@@ -0,0 +1,28 @@
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
modified radicle-cli/src/commands/patch.rs
@@ -2,6 +2,8 @@
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -67,6 +69,7 @@ Usage
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -166,6 +169,7 @@ pub enum OperationName {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -243,6 +247,9 @@ pub enum Operation {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -262,7 +269,8 @@ impl Operation {
|
|
|
|
|
|
| - | |
| + | |
| + | |
|
|
|
|
|
@@ -518,6 +526,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -540,6 +549,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -615,6 +625,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -790,6 +801,12 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
added radicle-cli/src/commands/patch/cache.rs
@@ -0,0 +1,28 @@
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |