@jswork/ushell-module-git 1.0.48 → 1.0.50

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 -1
  2. package/package.json +1 -1
package/index.sh CHANGED
@@ -10,11 +10,12 @@ source $ROOT_PATH/modules/11-lazygit.sh
10
10
  ## git base:
11
11
  alias gl='git pull'
12
12
  alias glo='git pull origin '
13
+ alias glom='git pull origin main'
13
14
  alias gp='git push'
14
15
 
15
16
  # git logs
16
17
  alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
17
- alias glg2="git log --graph --abbrev-commit --decorate --date=relative --all"
18
+ alias glg2="git log --oneline --decorate --all"
18
19
 
19
20
  alias gpo='git push origin '
20
21
  alias gpom='git push origin main'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {