Skip to content

Commit 0f29c5d

Browse files
committed
Make release creation instructions more robust
The change fixes this error: ``` $ git fetch --tags && \ git tag -l | sort -V remote: Enumerating objects: 4, done. remote: Counting objects: 100% (2/2), done. remote: Total 4 (delta 2), reused 2 (delta 2), pack-reused 2 (from 1) Unpacking objects: 100% (4/4), 1.75 KiB | 12.00 KiB/s, done. From https://github.com/commontk/AppLauncher * [new tag] v0.1.33 -> v0.1.33 ! [rejected] v0.1.34 -> v0.1.34 (would clobber existing tag) ```
1 parent 08f2233 commit 0f29c5d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,14 +375,14 @@ See [CONTRIBUTING.md][contributing] for more details.
375375
<details>
376376
<summary>click to expand</summary>
377377

378-
1. List all tags sorted by version
378+
1. List all tags sorted by version (overwrites any local tags)
379379

380380
```bash
381-
git fetch --tags && \
381+
git fetch --tags -f && \
382382
git tag -l | sort -V
383383
```
384384

385-
2. Choose the next release version number (without
385+
2. Choose the next release version number
386386

387387
```bash
388388
tag=vX.Y.Z

0 commit comments

Comments
 (0)