@jswork/ushell-module-git 1.0.30 → 1.0.31
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 +2 -0
- package/package.json +1 -1
package/index.sh
CHANGED
|
@@ -38,10 +38,12 @@ alias gfp='git fetch --all --prune';
|
|
|
38
38
|
|
|
39
39
|
## git revert:
|
|
40
40
|
alias gr='git checkout -f';
|
|
41
|
+
alias grf='git clean -fd';
|
|
41
42
|
alias gck='git checkout ';
|
|
42
43
|
alias g-='git checkout -';
|
|
43
44
|
alias gcy='git cherry-pick';
|
|
44
45
|
|
|
46
|
+
|
|
45
47
|
# merge:
|
|
46
48
|
alias gm='git merge ';
|
|
47
49
|
alias gmm='git merge master';
|