@jswork/ushell-module-git 1.0.52 → 1.0.54
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/modules/05-1-quick-commit-no-push.sh +6 -0
- package/package.json +1 -1
package/index.sh
CHANGED
|
@@ -12,6 +12,7 @@ alias gl='git pull'
|
|
|
12
12
|
alias glo='git pull origin '
|
|
13
13
|
alias glom='git pull origin main'
|
|
14
14
|
alias gp='git push'
|
|
15
|
+
alias gpgh='git push github';
|
|
15
16
|
|
|
16
17
|
# git logs
|
|
17
18
|
alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
|
|
@@ -79,6 +80,7 @@ alias gdc='git diff --cached'
|
|
|
79
80
|
alias gk='gitk --all&'
|
|
80
81
|
alias gx='gitx --all'
|
|
81
82
|
alias gg="${ROOT_PATH}/modules/05-quick-commit.sh"
|
|
83
|
+
alias ggl="${ROOT_PATH}/modules/05-1-quick-commit-no-push.sh"
|
|
82
84
|
alias gi="oaic -al"
|
|
83
85
|
alias gi2="${ROOT_PATH}/modules/12-ggi.sh"
|
|
84
86
|
alias ggg='gaa && gcm "wip" && gp'
|