@@ -4,6 +4,8 @@ A lightweight Go web server that displays git diffs from the current directory a
44
55Like ` jq ` , it is a single tiny binary without dependencies, making it easy to install and use anywhere.
66
7+ ![ Screenshot] ( screenshot.png )
8+
79## Installation
810
911### Supported Platforms
@@ -20,33 +22,33 @@ Download the binary for your platform from the [release page](https://github.com
2022
2123** For Linux (amd64):**
2224``` bash
23- sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.1 /diff-server_v0.0.1_linux_amd64
25+ sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.2 /diff-server_v0.0.2_linux_amd64
2426sudo chmod +x /usr/local/bin/diff-server
2527```
2628
2729** For Linux (arm64):**
2830``` bash
29- sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.1 /diff-server_v0.0.1_linux_arm64
31+ sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.2 /diff-server_v0.0.2_linux_arm64
3032sudo chmod +x /usr/local/bin/diff-server
3133```
3234
3335** For Linux (386):**
3436``` bash
35- sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.1 /diff-server_v0.0.1_linux_386
37+ sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.2 /diff-server_v0.0.2_linux_386
3638sudo chmod +x /usr/local/bin/diff-server
3739```
3840
3941#### macOS
4042
4143** For macOS (Apple Silicon/arm64):**
4244``` bash
43- sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.1 /diff-server_v0.0.1_darwin_arm64
45+ sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.2 /diff-server_v0.0.2_darwin_arm64
4446sudo chmod +x /usr/local/bin/diff-server
4547```
4648
4749** For macOS (Intel/amd64):**
4850``` bash
49- sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.1 /diff-server_v0.0.1_darwin_amd64
51+ sudo curl -fsL -o /usr/local/bin/diff-server https://github.com/kitproj/diff-server/releases/download/v0.0.2 /diff-server_v0.0.2_darwin_amd64
5052sudo chmod +x /usr/local/bin/diff-server
5153```
5254
@@ -67,8 +69,6 @@ cd diff-server
6769go build -o diff-server .
6870```
6971
70- ![ Screenshot] ( screenshot.png )
71-
7272## Usage
7373
7474### Starting the Server
0 commit comments