Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli/test: Incorporate sync hint where relevant
✗ CI failure Adrian Duke committed 2 months ago
commit 90ab1a1b5d9884f418d5edeef2ba8876373a5739
parent cd983e02bc39c689841ea0fd114117e423178ee6
1 failed (1 total) View logs
18 files changed +96 -6
modified crates/radicle-cli/examples/git/git-push-delete.md
@@ -9,6 +9,8 @@ f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354 refs/heads/master

``` (stderr) RAD_SOCKET=/dev/null
$ git push rad :alice/1
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 - [deleted]         alice/1
```
@@ -24,12 +26,16 @@ $ git checkout alice/2
Switched to a new branch 'alice/2'
$ git push rad HEAD:refs/patches
✓ Patch bb9b0d5b8de8d5e2a4cba45f02bd35b3e2678fbe opened
+
hint: [..]
+
hint: [..]
To [..]
 * [new reference]   HEAD -> refs/patches
```

``` (stderr) RAD_SOCKET=/dev/null
$ git push rad alice/2 -d
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 - [deleted]         alice/2
```
modified crates/radicle-cli/examples/git/git-push-diverge.md
@@ -63,6 +63,8 @@ f2de534 Second commit
``` ~alice RAD_SOCKET=/dev/null (stderr)
$ git push rad -f
✓ Canonical reference refs/heads/master updated to target commit f6cff86594495e9beccfeda7c20173e55c1dd9fc
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 2e8758f...f6cff86 master -> master (forced update)
```
@@ -76,6 +78,8 @@ $ git reset --hard HEAD^ -q
``` ~alice RAD_SOCKET=/dev/null (stderr)
$ git push -f
✓ Canonical reference refs/heads/master updated to target commit 319a7dc3b195368ded4b099f8c90bbb80addccd3
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + f6cff86...319a7dc master -> master (forced update)
```
modified crates/radicle-cli/examples/git/git-push-force-with-lease.md
@@ -18,6 +18,8 @@ the last time you pushed.
$ git commit --amend -m "Neue Änderungen" --allow-empty -q
$ git push rad master --force-with-lease
✓ Canonical reference refs/heads/master updated to target commit 9170c8795d3a78f0381a0ffafb20ea69fb0f5b6b
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + fb25886...9170c87 master -> master (forced update)
```
@@ -29,6 +31,8 @@ value, to `--force-push-lease`:
$ git commit --amend -m "Noch mehr Änderungen" --allow-empty -q
$ git push rad master --force-with-lease=master
✓ Canonical reference refs/heads/master updated to target commit 1e4213811eb4ce67360e4a0222cab81ad11a7ffe
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 9170c87...1e42138 master -> master (forced update)
```
@@ -39,6 +43,8 @@ As well as the named reference, and its expected value:
$ git commit --amend -m "Even more changes" --allow-empty -q
$ git push rad master --force-with-lease=master:1e4213811eb4ce67360e4a0222cab81ad11a7ffe
✓ Canonical reference refs/heads/master updated to target commit c4b74ef30953598852a82e0cd22b2ebb0d8d9e18
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 1e42138...c4b74ef master -> master (forced update)
```
@@ -75,6 +81,8 @@ So, let's create a new branch:

``` (stderr)
$ git push rad master:dev --force-with-lease=dev:
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new branch]      master -> dev
```
modified crates/radicle-cli/examples/git/git-push.md
@@ -6,6 +6,8 @@ $ git commit -m "Alice's commit" --allow-empty -s

``` (stderr) RAD_SOCKET=/dev/null
$ git push rad HEAD:alice/1
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new branch]      HEAD -> alice/1
```
modified crates/radicle-cli/examples/rad-id-threshold.md
@@ -65,6 +65,8 @@ $ git commit -v -m "Define power requirements"
``` ~alice (stderr) RAD_SOCKET=/dev/null
$ git push rad master
✓ Canonical reference refs/heads/master updated to target commit 3e674d1a1df90807e934f9ae5da2591dd6848a33
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..3e674d1  master -> master
```
@@ -87,6 +89,8 @@ $ git commit -v -m "Add README file"
``` ~alice (stderr) RAD_SOCKET=/dev/null
$ git push rad HEAD:refs/patches
✓ Patch b09b2aa0ee055671c811e9ad4ba73eed211ebaa3 opened
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
modified crates/radicle-cli/examples/rad-merge-after-update.md
@@ -5,6 +5,8 @@ $ git checkout -b feature/1 -q
$ git commit --allow-empty -q -m "First change"
$ git push rad HEAD:refs/patches
✓ Patch 696ec5508494692899337afe6713fe1796d0315c opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -17,6 +19,8 @@ $ git checkout master -q
$ git merge feature/1 -q
$ git push rad master
✓ Canonical reference refs/heads/master updated to target commit 954bcdb5008447ce294a61a21d7eb87afbe7f4a6
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..954bcdb  master -> master
```
@@ -29,6 +33,8 @@ $ git checkout feature/1 -q
$ git push -f
✓ Patch 696ec55 updated to revision [...]
✓ Patch 696ec5508494692899337afe6713fe1796d0315c merged
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 20aa5dd...954bcdb feature/1 -> patches/696ec5508494692899337afe6713fe1796d0315c (forced update)
```
modified crates/radicle-cli/examples/rad-merge-no-ff.md
@@ -5,6 +5,8 @@ $ git checkout -b feature/1 -q
$ git commit --allow-empty -q -m "First change"
$ git push rad HEAD:refs/patches
✓ Patch 696ec5508494692899337afe6713fe1796d0315c opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -38,6 +40,8 @@ Finally, we push master and expect the patch to be merged.
$ git push rad master
✓ Patch 696ec5508494692899337afe6713fe1796d0315c merged
✓ Canonical reference refs/heads/master updated to target commit 737a10cfa29111afeb0d43cf3545cee386b939ec
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..737a10c  master -> master
```
modified crates/radicle-cli/examples/rad-merge-via-push.md
@@ -8,6 +8,8 @@ $ git commit --allow-empty -m "First change"
``` (stderr) RAD_SOCKET=/dev/null
$ git push rad HEAD:refs/patches
✓ Patch 696ec5508494692899337afe6713fe1796d0315c opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -19,6 +21,8 @@ $ git commit --allow-empty -m "Second change"
``` (stderr) RAD_SOCKET=/dev/null
$ git push rad HEAD:refs/patches
✓ Patch 356f73863a8920455ff6e77cd9c805d68910551b opened
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -71,6 +75,8 @@ $ git push rad master
✓ Patch 356f73863a8920455ff6e77cd9c805d68910551b merged
✓ Patch 696ec5508494692899337afe6713fe1796d0315c merged
✓ Canonical reference refs/heads/master updated to target commit d6399c71702b40bae00825b3c444478d06b4e91c
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..d6399c7  master -> master
```
@@ -151,6 +157,8 @@ $ git reset --hard HEAD^
$ git push -f rad
! Patch 356f73863a8920455ff6e77cd9c805d68910551b reverted at revision 356f738
✓ Canonical reference refs/heads/master updated to target commit 20aa5dde6210796c3a2f04079b42316a31d02689
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + d6399c7...20aa5dd master -> master (forced update)
```
modified crates/radicle-cli/examples/rad-patch-change-base.md
@@ -15,10 +15,14 @@ $ git commit -v -m "Define power requirements"
```
``` (stderr)
$ git push rad flux-capacitor-power
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new branch]      flux-capacitor-power -> flux-capacitor-power
$ git push rad -o patch.message="Define power requirements" -o patch.message="See details." HEAD:refs/patches
✓ Patch aa45913e757cacd46972733bddee5472c78fa32a opened
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -36,6 +40,8 @@ $ git commit --message "Add README, just for the fun"
``` (stderr)
$ git push rad -o patch.message="Add README, just for the fun" HEAD:refs/patches
✓ Patch 183d343ab47d7fe18baf1b24b7209ad033d7fe5c opened
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
modified crates/radicle-cli/examples/rad-patch-checkout.md
@@ -23,6 +23,8 @@ Once the code is ready, we open (or create) a patch with our changes for the pro
``` (stderr)
$ git push rad -o patch.message="Define power requirements" -o patch.message="See details." HEAD:refs/patches
✓ Patch aa45913e757cacd46972733bddee5472c78fa32a opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -64,6 +66,8 @@ To compare against your previous revision aa45913, run:

   git range-diff f2de534[..] 3e674d1[..] 27857ec[..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   3e674d1..27857ec  patch/aa45913 -> patches/aa45913e757cacd46972733bddee5472c78fa32a
```
modified crates/radicle-cli/examples/rad-patch-draft.md
@@ -10,6 +10,8 @@ To open a patch in draft mode, we use the `--draft` option:
``` (stderr)
$ git push -o patch.draft -o patch.message="Nothing yet" rad HEAD:refs/patches
✓ Patch 97e18f8598237a396a1c0ac1509c89028e666c97 drafted
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
modified crates/radicle-cli/examples/rad-patch-edit.md
@@ -17,6 +17,8 @@ $ git commit --message "Add README, just for the fun"
``` (stderr)
$ git push rad -o patch.message="Add README, just for the fun" HEAD:refs/patches
✓ Patch 89f7afb1511b976482b21f6b2f39aef7f4fb88a2 opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -37,6 +39,8 @@ To compare against your previous revision 89f7afb, run:

   git range-diff f2de534[..] 03c02af[..] 8945f61[..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   03c02af..8945f61  changes -> patches/89f7afb1511b976482b21f6b2f39aef7f4fb88a2
```
modified crates/radicle-cli/examples/rad-patch-merge-draft.md
@@ -5,6 +5,8 @@ $ git checkout -b feature/1 -q
$ git commit --allow-empty -q -m "First change"
$ git push -o patch.draft rad HEAD:refs/patches
✓ Patch 8dfb4dcafc4346158c8160410dd3f2b0616ad4fe drafted
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -15,6 +17,8 @@ $ git merge feature/1
$ git push rad master
✓ Patch 8dfb4dcafc4346158c8160410dd3f2b0616ad4fe merged
✓ Canonical reference refs/heads/master updated to target commit 20aa5dde6210796c3a2f04079b42316a31d02689
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..20aa5dd  master -> master
```
modified crates/radicle-cli/examples/rad-patch-revert-merge.md
@@ -5,6 +5,8 @@ $ git checkout -b feature/1 -q
$ git commit --allow-empty -q -m "First change"
$ git push rad HEAD:refs/patches
✓ Patch 696ec5508494692899337afe6713fe1796d0315c opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
$ git checkout master
@@ -13,6 +15,8 @@ $ git merge feature/1
$ git push rad master
✓ Patch 696ec5508494692899337afe6713fe1796d0315c merged
✓ Canonical reference refs/heads/master updated to target commit 20aa5dde6210796c3a2f04079b42316a31d02689
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   f2de534..20aa5dd  master -> master
```
@@ -52,6 +56,8 @@ When pushing, notice that we're told our patch is reverted.
$ git push rad master --force
! Patch 696ec5508494692899337afe6713fe1796d0315c reverted at revision 696ec55
✓ Canonical reference refs/heads/master updated to target commit f2de534b5e81d7c6e2dcaf58c3dd91573c0a0354
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 20aa5dd...f2de534 master -> master (forced update)
```
modified crates/radicle-cli/examples/rad-patch-update.md
@@ -7,6 +7,8 @@ $ git commit -q -m "Not a real change" --allow-empty
``` (stderr)
$ git push rad HEAD:refs/patches
✓ Patch b6a23eb08656de0ef1fcc0b5fe8820841e5cb2e5 opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
modified crates/radicle-cli/examples/rad-patch-via-push.md
@@ -9,9 +9,9 @@ Switched to a new branch 'feature/1'
$ git commit -a -m "Add things" -q --allow-empty
$ git push -o patch.message="Add things #1" -o patch.message="See commits for details." rad HEAD:refs/patches
✓ Patch 6035d2f582afbe01ff23ea87528ae523d76875b6 opened
-
hint: to update, run `git push` or `git push rad --force-with-lease HEAD:patches/6035d2f582afbe01ff23ea87528ae523d76875b6`
-
hint: offline push, your node is not running
-
hint: to sync with the network, run `rad node start`
+
hint: [..]
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -81,6 +81,8 @@ $ git checkout -b feature/2 -q master
$ git commit -a -m "Add more things" -q --allow-empty
$ git push rad HEAD:refs/patches
✓ Patch 95808913573cead52ad7b42c7b475260ec45c4b2 opened
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -119,6 +121,8 @@ To compare against your previous revision 9580891, run:

   git range-diff f2de534[..] 8b0ea80[..] 02bef3f[..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   8b0ea80..02bef3f  feature/2 -> patches/95808913573cead52ad7b42c7b475260ec45c4b2
```
@@ -199,7 +203,7 @@ error: failed to push some refs to 'rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLr
hint: [..]
hint: [..]
hint: [..]
-
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
+
hint: [..]
```

The push fails because it's not a fast-forward update. To remedy this, we can
@@ -212,6 +216,8 @@ To compare against your previous revision d7040c6, run:

   git range-diff f2de534[..] 02bef3f[..] 9304dbc[..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 + 02bef3f...9304dbc feature/2 -> patches/95808913573cead52ad7b42c7b475260ec45c4b2 (forced update)
```
@@ -273,7 +279,9 @@ HEAD is now at 831e838 Going into detached HEAD
$ git push rad HEAD:refs/patches -o patch.branch
✓ Patch e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3 opened
✓ Branch patches/e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3 created
-
hint: to update, run `git push rad patches/e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3`
+
hint: [..]
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -291,6 +299,8 @@ To compare against your previous revision e0fd879, run:

   git range-diff [..] [..] [..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   831e838..d0ff2a1  patches/e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3 -> patches/e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3
```
@@ -302,7 +312,9 @@ $ git checkout 831e838 -q
$ git push rad HEAD:refs/patches -o patch.branch='feature/3'
✓ Patch e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3 opened
✓ Branch feature/3 created
-
hint: to update, run `git push rad feature/3`
+
hint: [..]
+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -319,6 +331,8 @@ To compare against your previous revision e0fd879, run:

   git range-diff [..] [..] [..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   831e838..d0ff2a1  feature/3 -> patches/e0fd879ac0a7d3ddcf3b440d8db656f5d7cebea3
```
modified crates/radicle-cli/examples/rad-patch.md
@@ -27,6 +27,8 @@ Once the code is ready, we open (or create) a patch with our changes for the pro
``` (stderr)
$ git push rad -o patch.message="Define power requirements" -o patch.message="See details." HEAD:refs/patches
✓ Patch aa45913e757cacd46972733bddee5472c78fa32a opened
+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
 * [new reference]   HEAD -> refs/patches
```
@@ -133,6 +135,8 @@ To compare against your previous revision aa45913, run:

   git range-diff f2de534[..] 3e674d1[..] 27857ec[..]

+
hint: [..]
+
hint: [..]
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
   3e674d1..27857ec  flux-capacitor-power -> patches/aa45913e757cacd46972733bddee5472c78fa32a
```
modified crates/radicle-cli/examples/workflow/4-patching-contributor.md
@@ -83,6 +83,8 @@ To compare against your previous revision e4934b6, run:

   git range-diff f2de534[..] 3e674d1[..] 27857ec[..]

+
hint: the sync default recently changed from 'sync' to 'no-sync'
+
hint: you can use `-o sync` with git push or set `git config --local push.pushOption "sync"` to restore the previous behaviour
To rad://z42hL2jL4XNk6K8oHQaSWfMgCL7ji/z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk
   3e674d1..27857ec  flux-capacitor-power -> patches/e4934b6d9dbe01ce3c7fbb5b77a80d5f1dacdc46
```