@jswork/ushell-module-git 1.0.67 → 1.0.68

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/index.sh CHANGED
@@ -8,7 +8,7 @@ source $ROOT_PATH/modules/07-git-rebase.sh
8
8
  source $ROOT_PATH/modules/11-lazygit.sh
9
9
  source $ROOT_PATH/modules/14-gr.sh
10
10
  source $ROOT_PATH/modules/15-ignore-file.sh
11
- source $ROOT_PATH/modules/16-wt.sh
11
+ # source $ROOT_PATH/modules/16-wt.sh
12
12
 
13
13
  ## git base:
14
14
  alias gl='git pull'
package/modules/16-wt.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- # wt CLI - Git Worktree Directory Switching
3
+ # wtt CLI - Git Worktree Directory Switching (wtt = worktree-tool)
4
4
  # https://github.com/yourusername/worktree-cli
5
5
 
6
6
  # Check if wt binary exists
@@ -9,9 +9,9 @@ if command -v wt >/dev/null 2>&1; then
9
9
  # Find the actual wt binary path
10
10
  WT_BIN=$(command -v wt)
11
11
 
12
- # 🚀 wt function for true directory switching
13
- # This function overrides the wt binary to support real directory switching
14
- wt() {
12
+ # 🚀 wtt function for true directory switching
13
+ # wtt (worktree-tool) provides directory switching without conflicting with wt binary
14
+ wtt() {
15
15
  case "$1" in
16
16
  switch|co)
17
17
  # Handle switch/co commands for true directory switching
@@ -38,15 +38,11 @@ if command -v wt >/dev/null 2>&1; then
38
38
  esac
39
39
  }
40
40
 
41
- # Convenience alias
42
- alias wtco='wt co' # Quick switch to worktree
43
- alias wtl='wt switch --list' # List all worktrees
44
-
45
41
  else
46
42
  # wt binary not found - show installation message once
47
- if [[ -z "$WT_SHOWN_MISSING" ]]; then
43
+ if [[ -z "$WTT_SHOWN_MISSING" ]]; then
48
44
  echo "⚠️ wt CLI not found in PATH"
49
45
  echo "Install: go build -o wt main.go && sudo mv wt /usr/local/bin/wt"
50
- export WT_SHOWN_MISSING=1
46
+ export WTT_SHOWN_MISSING=1
51
47
  fi
52
48
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {