Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ jobs:
include:
- os: macos-14
target: aarch64-apple-darwin
- os: macos-13
target: x86_64-apple-darwin
- os: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-task"
version = "1.0.3"
version = "1.0.4"
edition = "2021"

[lib]
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@ event-sourced, no working-tree files, full history, synced with `push`/`pull` li

## Get Started

**Homebrew** (macOS arm64 / Apple Silicon, Linux arm64+x86_64):

```sh
brew tap imohsenb/tap
brew install git-task
```

**From source** (fallback — any platform, requires a Rust toolchain):

```sh
git clone https://github.com/<you>/git-task && cd git-task && ./install.sh
# or: cargo install --locked --path .
```

Installs two binaries from the same codebase — `git-task` (so `git task ...` works) and `gtask`
(a standalone alias, e.g. `gtask new "title"`). Pick whichever fits how you invoke it.
Both install two binaries from the same codebase — `git-task` (so `git task ...` works) and
`gtask` (a standalone alias, e.g. `gtask new "title"`). Pick whichever fits how you invoke it.

Then, inside any repo:

Expand Down
Loading