@jswork/ushell-module-git 1.0.31 → 1.0.33
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 +1 -1
- package/modules/11-lazygit.sh +3 -0
- package/package.json +1 -1
package/index.sh
CHANGED
|
@@ -5,6 +5,7 @@ ROOT_PATH=$(dirname $BASH_SOURCE);
|
|
|
5
5
|
# 这个与我的命令 github-flow 冲突,所以暂时不用了
|
|
6
6
|
# source $ROOT_PATH/modules/02-git-flow.sh;
|
|
7
7
|
source $ROOT_PATH/modules/07-git-rebase.sh;
|
|
8
|
+
source $ROOT_PATH/modules/11-lazygit.sh;
|
|
8
9
|
|
|
9
10
|
## git base:
|
|
10
11
|
alias gl='git pull';
|
|
@@ -15,7 +16,6 @@ alias gpof='git push origin -f';
|
|
|
15
16
|
|
|
16
17
|
# push branchs/tags/deletes
|
|
17
18
|
alias gpa='git push --all -u';
|
|
18
|
-
alias gpt="git push origin --tags";
|
|
19
19
|
alias gpd="git push origin --delete ";
|
|
20
20
|
|
|
21
21
|
alias gaa='git add .';
|