@jswork/ushell-module-git 1.0.39 → 1.0.41

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.
Files changed (2) hide show
  1. package/index.sh +4 -2
  2. package/package.json +1 -1
package/index.sh CHANGED
@@ -66,10 +66,13 @@ alias ga='git add '
66
66
  alias gb='git branch '
67
67
  alias gbh='git branch -h'
68
68
  alias gd='git diff'
69
+ alias gdd='git diff --staged'
70
+ alias gdc='git diff --cached'
69
71
  alias gk='gitk --all&'
70
72
  alias gx='gitx --all'
71
73
  alias gg="${ROOT_PATH}/modules/05-quick-commit.sh"
72
- alias gi="${ROOT_PATH}/modules/12-ggi.sh"
74
+ alias gi="oaic -al"
75
+ alias gi2="${ROOT_PATH}/modules/12-ggi.sh"
73
76
  alias ggg='gaa && gcm "wip" && gp'
74
77
 
75
78
  ## git tags:
@@ -89,7 +92,6 @@ alias mvg="${ROOT_PATH}/modules/08-mvg.sh"
89
92
 
90
93
  # oprr
91
94
  alias oprr="${ROOT_PATH}/modules/09-oprr.sh"
92
- alias opc="open $(guc -c)"
93
95
 
94
96
  # stash
95
97
  alias gst1='git stash'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {