0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-11-14 07:40:40 +00:00

docs: update installation instructions (#116)

Co-authored-by: Robert Kaussow <xoxys@rknet.org>
This commit is contained in:
Patrick Schratz 2024-10-23 10:42:27 +02:00 committed by GitHub
parent 918e070248
commit f667989933
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,8 +16,21 @@ Semantic versioning tool for git based on conventional commits.
Prebuilt multi-arch binaries are available for Linux and macOS.
```Shell
curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-linux-amd64 -o /usr/local/bin/git-sv
chmod +x /usr/local/bin/git-sv
# Linux amd64
curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-linux-amd64 -o ~/.local/bin/git-sv
chmod +x ~/.local/bin/git-sv
```
```Shell
# macOS arm
curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-darwin-10.12-arm64 -o ~/.local/bin/git-sv
chmod +x ~/.local/bin/git-sv
```
```Shell
# macOS intel
curl -SsfL https://github.com/thegeeklab/git-sv/releases/latest/download/git-sv-darwin-10.12-amd64 -o ~/.local/bin/git-sv
chmod +x ~/.local/bin/git-sv
```
## Build