Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
test: fix backwards-incompatibility with git 2.34
Merged yorgos-laptop opened 1 year ago

As discussed on https://radicle.zulipchat.com/#narrow/stream/438104-nix/topic/version.20of.20git/near/440313515, the tests failed with git 2.34 (in an ubuntu:22.04 container) with:

--- Expected
++++ actual:   stdout
   1      - branch 'master' set up to track 'origin/master'.
        1 + Branch 'master' set up to track remote branch 'master' from 'origin'.

Exit status: 0

As per @fintohaps’ suggestion, this gets the tests passing again on git 2.34.

1 file changed +1 -1 a6e33ec1 ce99f7e7
modified radicle-cli/examples/rad-init-with-existing-remote.md
@@ -12,7 +12,7 @@ Then we add it as a remote.
```
$ git remote add origin file://$PWD/remote
$ git push -u origin master:master
-
branch 'master' set up to track 'origin/master'.
+
...
$ git branch -vv
* master f2de534 [origin/master] Second commit
```