From edf7f13de4a4515494e76021e153ba1bb2586d69 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 25 Jan 2025 11:22:59 +0000 Subject: [PATCH] Add tagging instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index cee9b5e..7464505 100644 --- a/README.md +++ b/README.md @@ -80,3 +80,13 @@ Thus, the following sets of environment variables are valid for multi-target bac - Learn how to install Debian with BTRFS in this helpful [video tutorial](https://www.youtube.com/watch?v=MoWApyUb5w8). Note that a BTRFS disk can also be created post-installation. - [rsync.net](https://www.rsync.net/products/borg.html) offers a special discount for BorgBackup users: [BorgBackup at rsync.net](https://www.rsync.net/products/borg.html). - Explore detailed BorgBackup documentation and demos: [BorgBackup Documentation](https://www.borgbackup.org/demo.html), including a comprehensive guide on [`borg create`](https://borgbackup.readthedocs.io/en/stable/usage/create.html#description). + +## Development + +Create a new tag: + +```sh +export TAG=vX.X.X +git tag -a $TAG -m "Release $TAG" +git push origin $TAG +```