Releases: yankeexe/git-worktree-switcher
Releases · yankeexe/git-worktree-switcher
Improve compatibility with Mac OS
What's Changed
- Updated the usage of the
grep
utility by @kamilgryniewicz in #12
New Contributors
- @kamilgryniewicz made their first contribution in #12
Full Changelog: 0.1.0...0.1.1
Escape forward slash in search keywords
Fixes:
Search keyword for worktree with forward slash.
# Create a new worktree
git worktree add "./feature/something-x"
# Change to that worktree with forward slash search character
wt feature/something-x
# OR
wt feature x
Update to the latest version
wt update
Handle worktree paths with spaces
Handle worktree paths with spaces.
Update to the latest version
wt update
Add version flag
Changelog:
- Add version flag
wt version
- Clean up script
Update to the new version:
wt update
Add auto-completion for Fish Shell
🐟 Add auto-completion for Fish Shell
Enable Tab auto-completion: 🚀
https://github.com/yankeexe/git-worktree-switcher#tab-autocompletion-zap
- bash:
wt_completion
- zsh:
_wt_completion
- fish:
wt.fish
Fix Shellcheck Issues
- Fixed shell check issues for
wt
and completion scripts.
Add auto-completion for zsh
Switch between your git worktrees even faster! ⚡ Now with tab autocompletion for both Bash and ZSH! ✨
Enable Tab Autocompletion: 🚀
https://github.com/yankeexe/git-worktree-switcher#tab-autocompletion-zap
- bash:
wt_completion
- zsh:
_wt_completion
Add auto-completion for bash
Autocompletion added for bash shell.
sudo cp wt_completion /etc/bash_completion.d
wt <TAB> <TAB>
# OR
wt <completion-characters> <TAB>
Add update sub command.
- Added update sub command to update the script to the latest version.
$ wt update
Change to root worktree.
Changelog:
- Feature: Change to root worktree using
wt -
- Fix: multiline capture for search term error.