From ce99f7e7e45ac22104434c6094ac2fe410a8970d Mon Sep 17 00:00:00 2001 From: Yorgos Saslis Date: Thu, 23 May 2024 16:25:27 +0300 Subject: [PATCH] test: Fix backwards incompatibility with git 2.34 ``` --- 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. Co-Authored-By: fintohaps Signed-off-by: Yorgos Saslis --- radicle-cli/examples/rad-init-with-existing-remote.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle-cli/examples/rad-init-with-existing-remote.md b/radicle-cli/examples/rad-init-with-existing-remote.md index 54de3119..32386036 100644 --- a/radicle-cli/examples/rad-init-with-existing-remote.md +++ b/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 ```