@jswork/ushell-module-git 1.0.43 → 1.0.45

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/README.md CHANGED
@@ -8,12 +8,6 @@ npm i -S @jswork/ushell-module-git
8
8
 
9
9
  ## dependencies
10
10
  ```shell
11
- # guc
12
- npm i -g @jswork/git-url-cli
13
-
14
- # t2k
15
- npm i -g @jswork/topics2keywords
16
-
17
11
  # git-sweep
18
12
  npm i -g @jswork/git-sweep
19
13
  ```
package/index.sh CHANGED
@@ -12,6 +12,7 @@ alias gl='git pull'
12
12
  alias glo='git pull origin '
13
13
  alias gp='git push'
14
14
  alias gpo='git push origin '
15
+ alias gpom='git push origin main'
15
16
  alias gpof='git push origin -f'
16
17
 
17
18
  # push branchs/tags/deletes
@@ -1,11 +1,8 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- ## rebase
4
- alias grb='git rebase ';
5
- alias gmb='git rebase ';
6
- alias grbm='git rebase master';
7
- alias grbd='git rebase develop';
8
- alias grbdev='git rebase dev';
3
+ # git rebase c/a
4
+ alias gbc='git rebase --continue';
5
+ alias gba='git rebase --abort';
9
6
 
10
7
  # git pull
11
8
  alias glb='git pull --rebase';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-git",
3
- "version": "1.0.43",
3
+ "version": "1.0.45",
4
4
  "description": "Unix like shell module for git.",
5
5
  "main": "index.sh",
6
6
  "repository": {