@hust-open-atom-club/atomgit-cli 0.7.0 → 0.7.1
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 +19 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -22,6 +22,23 @@ macOS 或 Linux 用户可以通过项目维护的 Homebrew tap 安装:
|
|
|
22
22
|
brew install hust-open-atom-club/tap/atomgit-cli
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
|
|
26
|
+
### WinGet
|
|
27
|
+
|
|
28
|
+
Windows 用户可以通过 Windows Package Manager 安装:
|
|
29
|
+
|
|
30
|
+
```powershell
|
|
31
|
+
winget install hust-open-atom-club.atomgit-cli
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
升级已安装的 AtomGit CLI:
|
|
35
|
+
|
|
36
|
+
```powershell
|
|
37
|
+
winget upgrade atomgit-cli
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
WinGet 安装的二进制由 WinGet 管理升级。
|
|
41
|
+
|
|
25
42
|
### Scoop
|
|
26
43
|
|
|
27
44
|
Windows 用户可以通过组织维护的 scoop bucket 安装:
|
|
@@ -30,8 +47,6 @@ Windows 用户可以通过组织维护的 scoop bucket 安装:
|
|
|
30
47
|
scoop install https://raw.githubusercontent.com/hust-open-atom-club/ScoopBucket/main/bucket/atomgit-cli.json
|
|
31
48
|
```
|
|
32
49
|
|
|
33
|
-
Scoop 安装的二进制由 Scoop 管理升级,并报告 `selfUpdate=false, source=scoop`。
|
|
34
|
-
|
|
35
50
|
### Nix / NixOS
|
|
36
51
|
|
|
37
52
|
AtomGit CLI 已进入 `nixos-unstable`,包名为 `atomgit-cli`,安装后提供 `ag` 命令。
|
|
@@ -73,6 +88,8 @@ ag auth status
|
|
|
73
88
|
ag repo view
|
|
74
89
|
ag issue list
|
|
75
90
|
ag pr list
|
|
91
|
+
ag check-update
|
|
92
|
+
ag org list
|
|
76
93
|
ag --help
|
|
77
94
|
```
|
|
78
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hust-open-atom-club/atomgit-cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "AtomGit command-line interface",
|
|
5
5
|
"license": "MulanPSL-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"version:npm": "node scripts/set-npm-version.js"
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@hust-open-atom-club/atomgit-cli-darwin-arm64": "0.7.
|
|
32
|
-
"@hust-open-atom-club/atomgit-cli-darwin-x64": "0.7.
|
|
33
|
-
"@hust-open-atom-club/atomgit-cli-linux-arm64": "0.7.
|
|
34
|
-
"@hust-open-atom-club/atomgit-cli-linux-loong64": "0.7.
|
|
35
|
-
"@hust-open-atom-club/atomgit-cli-linux-x64": "0.7.
|
|
36
|
-
"@hust-open-atom-club/atomgit-cli-win32-arm64": "0.7.
|
|
37
|
-
"@hust-open-atom-club/atomgit-cli-win32-x64": "0.7.
|
|
31
|
+
"@hust-open-atom-club/atomgit-cli-darwin-arm64": "0.7.1",
|
|
32
|
+
"@hust-open-atom-club/atomgit-cli-darwin-x64": "0.7.1",
|
|
33
|
+
"@hust-open-atom-club/atomgit-cli-linux-arm64": "0.7.1",
|
|
34
|
+
"@hust-open-atom-club/atomgit-cli-linux-loong64": "0.7.1",
|
|
35
|
+
"@hust-open-atom-club/atomgit-cli-linux-x64": "0.7.1",
|
|
36
|
+
"@hust-open-atom-club/atomgit-cli-win32-arm64": "0.7.1",
|
|
37
|
+
"@hust-open-atom-club/atomgit-cli-win32-x64": "0.7.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"adm-zip": "^0.6.0",
|