@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 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'
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ PWD=$0;
3
+ MSG=$1;
4
+
5
+ git add --all;
6
+ git commit -m "$MSG";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {