From e740900475915afdf4c9140dddf567153c2fdb67 Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 6 Oct 2023 12:28:11 +0000 Subject: [PATCH] s/purge/prune/g It isn't purge, it's prune. I think I got confused with the Docker terminology. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f84f10..01f82b0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It's more or less the equivalent of ```bash git checkout main -git fetch --all --purge # purge is to delete unnecessary remote refs +git fetch --all --prune # prune is to delete unnecessary remote refs git merge origin/main main --ff-only git branch --merged | grep -v main | xargs git branch -d ```