4 Commits
v0.3.6 ... main

Author SHA1 Message Date
254e09a724 feat: correct readme
All checks were successful
Release / release (push) Successful in 1m43s
Signed-off-by: kjuulh <contact@kjuulh.io>
2026-03-20 18:00:12 +01:00
2da5223fdd feat: try again
All checks were successful
Release / release (push) Successful in 1m41s
Signed-off-by: kjuulh <contact@kjuulh.io>
2026-03-20 17:46:47 +01:00
e4440ff3a4 feat: try again
All checks were successful
Release / release (push) Successful in 1m44s
Signed-off-by: kjuulh <contact@kjuulh.io>
2026-03-20 17:41:55 +01:00
560f086656 feat: enable gitea
Some checks failed
Release / release (push) Failing after 6s
Signed-off-by: kjuulh <contact@kjuulh.io>
2026-03-20 17:40:07 +01:00
3 changed files with 21 additions and 5 deletions

View File

@@ -26,5 +26,6 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
run: | run: |
docker run --rm \ docker run --rm \
-e GITEA_TOKEN=${{ secrets.GITEA_TOKEN }} \ -e GITEA_TOKEN=${{ secrets.RELEASE_TOKEN }} \
-e RELEASE_TOKEN=${{ secrets.RELEASE_TOKEN }} \
gitnow-release release gitnow-release release

View File

@@ -53,7 +53,7 @@ homebrew_casks:
repository: repository:
owner: kjuulh owner: kjuulh
name: homebrew-tap name: homebrew-tap
token: "{{ .Env.GITEA_TOKEN }}" token: "{{ .Env.RELEASE_TOKEN }}"
url: url:
template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}" template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://gitnow-client.prod.kjuulh.app" homepage: "https://gitnow-client.prod.kjuulh.app"

View File

@@ -8,15 +8,30 @@ Git Now is a utility for easily navigating git projects from common upstream pro
## Installation ## Installation
```bash ### Homebrew
cargo (b)install gitnow
```bash
brew tap kjuulh/tap https://git.kjuulh.io/kjuulh/homebrew-tap
brew install gitnow
```
### Cargo
```bash
cargo install gitnow
# or
cargo binstall gitnow
```
### Setup
```bash
# You can either use gitnow directly (and use spawned shell sessions) # You can either use gitnow directly (and use spawned shell sessions)
gitnow gitnow
# Or install gitnow scripts (in your .bashrc, .zshrc) this will use native shell commands to move you around # Or install gitnow scripts (in your .bashrc, .zshrc) this will use native shell commands to move you around
eval $(gitnow init zsh) eval $(gitnow init zsh)
git-now # Long git-now # Long
gn # Short alias gn # Short alias
``` ```