@gw-tools/gw 0.13.14 → 0.13.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,8 @@ A command-line tool for managing git worktrees, built with Deno.
|
|
|
13
13
|
- [Keeping Secrets Updated](#keeping-secrets-updated)
|
|
14
14
|
- [Features](#features)
|
|
15
15
|
- [Installation](#installation)
|
|
16
|
-
- [Via
|
|
16
|
+
- [Via Homebrew (macOS)](#via-homebrew-macos)
|
|
17
|
+
- [Via npm](#via-npm)
|
|
17
18
|
- [Build from source](#build-from-source)
|
|
18
19
|
- [Configuration](#configuration)
|
|
19
20
|
- [Auto-Detection](#auto-detection)
|
|
@@ -92,10 +93,13 @@ A command-line tool for managing git worktrees, built with Deno.
|
|
|
92
93
|
|
|
93
94
|
```bash
|
|
94
95
|
# Install (Homebrew on macOS)
|
|
95
|
-
brew install mthines/gw-tools/gw
|
|
96
|
+
brew install mthines/gw-tools/gw && gw install-shell
|
|
96
97
|
|
|
97
98
|
# Or install via npm
|
|
98
|
-
npm install -g @gw-tools/gw
|
|
99
|
+
npm install -g @gw-tools/gw && gw install-shell
|
|
100
|
+
|
|
101
|
+
# Or install via Linux package manager
|
|
102
|
+
yay -S gw-tools && gw install-shell
|
|
99
103
|
|
|
100
104
|
# Create a new worktree and copy files
|
|
101
105
|
gw add feat-new-feature .env secrets/
|