oh-my-zsh's git plugin defines alias gsd='git svn dcommit' which shadows the GSD binary. Added troubleshooting section to getting-started.md with two solutions: unalias in .zshrc, or use the gsd-cli alternative binary name.
This commit is contained in:
parent
1f9da9ed5f
commit
7ba993cbfb
1 changed files with 20 additions and 0 deletions
|
|
@ -151,3 +151,23 @@ Shows each session's date, message count, and first-message preview so you can c
|
|||
- [Auto Mode](./auto-mode.md) — deep dive into autonomous execution
|
||||
- [Configuration](./configuration.md) — model selection, timeouts, budgets
|
||||
- [Commands Reference](./commands.md) — all commands and shortcuts
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### `gsd` command runs `git svn dcommit` instead of GSD
|
||||
|
||||
The [oh-my-zsh git plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/git) defines `alias gsd='git svn dcommit'`, which shadows the GSD binary.
|
||||
|
||||
**Option 1** — Remove the alias in your `~/.zshrc` (add after the `source $ZSH/oh-my-zsh.sh` line):
|
||||
|
||||
```bash
|
||||
unalias gsd 2>/dev/null
|
||||
```
|
||||
|
||||
**Option 2** — Use the alternative binary name:
|
||||
|
||||
```bash
|
||||
gsd-cli
|
||||
```
|
||||
|
||||
Both `gsd` and `gsd-cli` point to the same binary.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue