Summary
There is currently no way to update git gtr from within the tool itself. Users must manually pull the latest version or re-run the installation steps.
Suggestion
Consider adding a git gtr update command that pulls the latest release, or at minimum documents the recommended update workflow.
Relationship to #92
If a Homebrew tap is implemented (#92), users would be able to update via brew upgrade git-gtr, which may make a built-in update command unnecessary. Rather than investing in a custom auto-update mechanism, it may be better to prioritize the Homebrew tap and document brew upgrade as the recommended update path.
Current workaround
Users who installed via git clone can update manually:
cd /path/to/git-worktree-runner
git pull origin main
Summary
There is currently no way to update
git gtrfrom within the tool itself. Users must manually pull the latest version or re-run the installation steps.Suggestion
Consider adding a
git gtr updatecommand that pulls the latest release, or at minimum documents the recommended update workflow.Relationship to #92
If a Homebrew tap is implemented (#92), users would be able to update via
brew upgrade git-gtr, which may make a built-in update command unnecessary. Rather than investing in a custom auto-update mechanism, it may be better to prioritize the Homebrew tap and documentbrew upgradeas the recommended update path.Current workaround
Users who installed via git clone can update manually:
cd /path/to/git-worktree-runner git pull origin main