@jswork/ushell-module-git 1.0.42 → 1.0.44
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/modules/07-git-rebase.sh +3 -6
- package/modules/10-fixup.sh +2 -0
- package/package.json +1 -1
package/modules/07-git-rebase.sh
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
alias
|
|
5
|
-
alias
|
|
6
|
-
alias grbm='git rebase master';
|
|
7
|
-
alias grbd='git rebase develop';
|
|
8
|
-
alias grbdev='git rebase dev';
|
|
3
|
+
# git rebase c/a
|
|
4
|
+
alias gbc='git rebase --continue';
|
|
5
|
+
alias gba='git rebase --abort';
|
|
9
6
|
|
|
10
7
|
# git pull
|
|
11
8
|
alias glb='git pull --rebase';
|
package/modules/10-fixup.sh
CHANGED