Compare commits
5 Commits
v0.3.6
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e38a7dbad | |||
|
254e09a724
|
|||
|
2da5223fdd
|
|||
|
e4440ff3a4
|
|||
|
560f086656
|
@@ -11,7 +11,7 @@ jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
@@ -26,5 +26,6 @@ jobs:
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
run: |
|
||||
docker run --rm \
|
||||
-e GITEA_TOKEN=${{ secrets.GITEA_TOKEN }} \
|
||||
-e GITEA_TOKEN=${{ secrets.RELEASE_TOKEN }} \
|
||||
-e RELEASE_TOKEN=${{ secrets.RELEASE_TOKEN }} \
|
||||
gitnow-release release
|
||||
|
||||
@@ -53,7 +53,7 @@ homebrew_casks:
|
||||
repository:
|
||||
owner: kjuulh
|
||||
name: homebrew-tap
|
||||
token: "{{ .Env.GITEA_TOKEN }}"
|
||||
token: "{{ .Env.RELEASE_TOKEN }}"
|
||||
url:
|
||||
template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
|
||||
homepage: "https://gitnow-client.prod.kjuulh.app"
|
||||
|
||||
21
README.md
21
README.md
@@ -8,15 +8,30 @@ Git Now is a utility for easily navigating git projects from common upstream pro
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
cargo (b)install gitnow
|
||||
### Homebrew
|
||||
|
||||
```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)
|
||||
gitnow
|
||||
|
||||
# Or install gitnow scripts (in your .bashrc, .zshrc) this will use native shell commands to move you around
|
||||
eval $(gitnow init zsh)
|
||||
git-now # Long
|
||||
git-now # Long
|
||||
gn # Short alias
|
||||
```
|
||||
|
||||
|
||||
@@ -22,17 +22,17 @@ dotenvy.workspace = true
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
uuid = { version = "1.7.0", features = ["v4"] }
|
||||
async-trait = "0.1.82"
|
||||
toml = "0.8.19"
|
||||
toml = "1.0.0"
|
||||
|
||||
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "json"] }
|
||||
reqwest = { version = "0.13", default-features = false, features = ["rustls-tls-webpki-roots", "json"] }
|
||||
url = "2.5.2"
|
||||
dirs = "6.0.0"
|
||||
prost = "0.13.2"
|
||||
prost-types = "0.13.2"
|
||||
bytes = "1.7.1"
|
||||
nucleo-matcher = "0.3.1"
|
||||
ratatui = { version = "0.29.0", features = ["termwiz"] }
|
||||
crossterm = { version = "0.28.0", features = ["event-stream"] }
|
||||
ratatui = { version = "0.30.0", features = ["termwiz"] }
|
||||
crossterm = { version = "0.29.0", features = ["event-stream"] }
|
||||
futures = "0.3.30"
|
||||
termwiz = "0.23.0"
|
||||
regex = "1.11.1"
|
||||
|
||||
Reference in New Issue
Block a user