@jswork/ushell-module-git 1.0.45 → 1.0.47

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.
Files changed (2) hide show
  1. package/index.sh +2 -0
  2. package/package.json +1 -1
package/index.sh CHANGED
@@ -11,6 +11,7 @@ source $ROOT_PATH/modules/11-lazygit.sh
11
11
  alias gl='git pull'
12
12
  alias glo='git pull origin '
13
13
  alias gp='git push'
14
+ alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
14
15
  alias gpo='git push origin '
15
16
  alias gpom='git push origin main'
16
17
  alias gpof='git push origin -f'
@@ -22,6 +23,7 @@ alias gpd="git push origin --delete "
22
23
  alias gaa='git add .'
23
24
  alias gcm='git commit -m '
24
25
  alias gam='git commit -am '
26
+ alias gme='git commit --amend'
25
27
  alias goo='git checkout origin '
26
28
  alias gc='git clone'
27
29
  alias gc1='git clone --depth=1'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {