@jswork/ushell-module-git 1.0.30 → 1.0.32

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 +2 -1
  2. package/package.json +1 -1
package/index.sh CHANGED
@@ -15,7 +15,6 @@ alias gpof='git push origin -f';
15
15
 
16
16
  # push branchs/tags/deletes
17
17
  alias gpa='git push --all -u';
18
- alias gpt="git push origin --tags";
19
18
  alias gpd="git push origin --delete ";
20
19
 
21
20
  alias gaa='git add .';
@@ -38,10 +37,12 @@ alias gfp='git fetch --all --prune';
38
37
 
39
38
  ## git revert:
40
39
  alias gr='git checkout -f';
40
+ alias grf='git clean -fd';
41
41
  alias gck='git checkout ';
42
42
  alias g-='git checkout -';
43
43
  alias gcy='git cherry-pick';
44
44
 
45
+
45
46
  # merge:
46
47
  alias gm='git merge ';
47
48
  alias gmm='git merge master';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {