Skip to content

Commit 2786dca

Browse files
committed
Update download / install details in the README.
1 parent 0101f23 commit 2786dca

2 files changed

Lines changed: 8 additions & 16 deletions

File tree

README.md

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,27 @@
1212

1313
## Installation
1414

15-
1. Prerequisites
15+
1. Prerequisites:
1616

1717
* [Git](https://git-scm.com) >= 1.6.6
1818
* [SQLite](https://sqlite.org) >= 3.0.0
1919

20-
2. Download the latest release for your platform:
20+
2. Download and extract the latest release for your platform:
2121

2222
```bash
23-
# macOS
24-
curl -L https://github.com/chrislloyd/git-remote-sqlite/releases/latest/download/git-remote-sqlite-macos -o git-remote-sqlite
23+
# macOS (Apple Silicon)
24+
curl -L https://github.com/chrislloyd/git-remote-sqlite/releases/latest/download/git-remote-sqlite-aarch64-macos.tar.gz | tar xz
2525

26-
# Linux
27-
curl -L https://github.com/chrislloyd/git-remote-sqlite/releases/latest/download/git-remote-sqlite-linux -o git-remote-sqlite
26+
# Linux (x86_64)
27+
curl -L https://github.com/chrislloyd/git-remote-sqlite/releases/latest/download/git-remote-sqlite-x86_64-linux.tar.gz | tar xz
2828
```
2929

30-
3. Make the binary executable:
31-
32-
```bash
33-
chmod +x git-remote-sqlite
34-
```
35-
36-
4. Move the binary to your `$PATH`:
30+
3. Move the binary to your `$PATH`:
3731

3832
```bash
3933
sudo mv git-remote-sqlite /usr/local/bin/
4034
```
4135

42-
5. The installation is complete. The binary functions as both a standalone command and as a Git remote helper.
43-
4436
## Basic Usage
4537

4638
### 1. Push to/pull from the database

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Prerequisites
44

55
* [Zig](https://ziglang.org) 0.14.0
6-
* [SQLite](https://www.sqlite.org) >= 3.20.0
6+
* [SQLite](https://www.sqlite.org) >= 3.0.0
77
* [libgit2](https://libgit2.org) >= 1.0.0
88

99
## Building

0 commit comments

Comments
 (0)