From c7ee0757b1fee15c3434692ae84ec418249b0dde Mon Sep 17 00:00:00 2001 From: Tomoki Sugiura Date: Mon, 22 Jul 2024 15:07:42 +0900 Subject: [PATCH] Remove git-neco Signed-off-by: Tomoki Sugiura --- docs/procedure.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/procedure.md b/docs/procedure.md index 7fb86dd2e..5e7efed8a 100644 --- a/docs/procedure.md +++ b/docs/procedure.md @@ -23,7 +23,9 @@ Create branch. ```console $ VERSION=x.y.z $ echo $VERSION -$ git neco dev "bump-$VERSION" +$ git switch main +$ git pull origin main +$ git switch -c "bump-$VERSION" ``` Build `generate-artifacs` and update `artifacts.go`. @@ -38,7 +40,7 @@ Create a PR. ```console $ git commit -s -m "Update artifacts" -$ git neco review +$ gh pr create --fill ``` After CI is finished, merge it.