From 7f0e13258c30f96469fde98331e669e4fe9076ec Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Wed, 8 Jan 2025 15:38:56 +0000 Subject: [PATCH] Fix upstream branch tracking error in script/bump-zed-minor-versions (#22834) Follow-up to: https://github.com/zed-industries/zed/pull/22614 --- script/bump-zed-minor-versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bump-zed-minor-versions b/script/bump-zed-minor-versions index ab381fe456..cacea1598c 100755 --- a/script/bump-zed-minor-versions +++ b/script/bump-zed-minor-versions @@ -77,7 +77,7 @@ git tag ${stable_tag_name} echo "Creating new preview branch ${minor_branch_name}..." git checkout -q main git checkout -q -b ${minor_branch_name} -git branch --set-upstream-to=origin/${minor_branch_name} ${minor_branch_name} +git branch --set-upstream-to=origin/${minor_branch_name} ${minor_branch_name} --no-advice echo -n preview > crates/zed/RELEASE_CHANNEL git commit -q --all --message "${minor_branch_name} preview" git tag ${preview_tag_name}