mirror of
https://codeberg.org/james-smith-za/git-tidy-python.git
synced 2026-01-15 19:29:25 +02:00
s/purge/prune/g
It isn't purge, it's prune. I think I got confused with the Docker terminology.
This commit is contained in:
parent
dc028e1030
commit
e740900475
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ It's more or less the equivalent of
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git checkout main
|
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 merge origin/main main --ff-only
|
||||||
git branch --merged | grep -v main | xargs git branch -d
|
git branch --merged | grep -v main | xargs git branch -d
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue