@jswork/ushell-module-git 1.0.34 → 1.0.36

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 +6 -0
  2. package/package.json +1 -1
package/index.sh CHANGED
@@ -38,6 +38,7 @@ alias gfp='git fetch --all --prune'
38
38
  ## git revert:
39
39
  alias gr='git checkout -f'
40
40
  alias grf='git clean -fd'
41
+ alias grr='git checkout -f && git clean -fd'
41
42
  alias gck='git checkout '
42
43
  alias g-='git checkout -'
43
44
  alias gcy='git cherry-pick'
@@ -69,6 +70,7 @@ alias gk='gitk --all&'
69
70
  alias gx='gitx --all'
70
71
  alias gg="${ROOT_PATH}/modules/05-quick-commit.sh"
71
72
  alias ggg='gaa && gcm "wip" && gp'
73
+ alias ggi='aic2 --all -y && git push'
72
74
 
73
75
  ## git tags:
74
76
  alias gcd=". ${ROOT_PATH}/modules/01-gcd.sh"
@@ -89,6 +91,10 @@ alias mvg="${ROOT_PATH}/modules/08-mvg.sh"
89
91
  alias oprr="${ROOT_PATH}/modules/09-oprr.sh"
90
92
  alias opc="open $(guc -c)"
91
93
 
94
+ # stash
95
+ alias gst1='git stash'
96
+ alias gst2='git stash pop'
97
+
92
98
  # git-url-cli
93
99
  # alias guc='git-url-cli'
94
100
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {