gitcode-cli 0.5.7__py3-none-any.whl → 0.5.14__py3-none-any.whl

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.
gc_cli/__init__.py CHANGED
@@ -1,11 +1,11 @@
1
- """
2
- GitCode CLI - Command line tool for GitCode.
3
-
4
- This package provides a Python wrapper for the gc binary.
5
- """
6
-
7
- __version__ = "0.5.7"
8
- __author__ = "GitCode CLI Contributors"
9
- __all__ = ["__version__", "main"]
10
-
11
- from gc_cli.wrapper import main
1
+ """
2
+ GitCode CLI - Command line tool for GitCode.
3
+
4
+ This package provides a Python wrapper for the gc binary.
5
+ """
6
+
7
+ __version__ = "0.5.14"
8
+ __author__ = "GitCode CLI Contributors"
9
+ __all__ = ["__version__", "main"]
10
+
11
+ from gc_cli.wrapper import main
gc_cli/__main__.py CHANGED
@@ -1,9 +1,9 @@
1
- """Allow running GitCode CLI with ``python -m gc_cli``."""
2
-
3
- import sys
4
-
5
- from gc_cli.wrapper import main
6
-
7
-
8
- if __name__ == "__main__":
9
- sys.exit(main())
1
+ """Allow running GitCode CLI with ``python -m gc_cli``."""
2
+
3
+ import sys
4
+
5
+ from gc_cli.wrapper import main
6
+
7
+
8
+ if __name__ == "__main__":
9
+ sys.exit(main())
gc_cli/bin/.gitkeep CHANGED
File without changes
Binary file
Binary file
gc_cli/bin/gc-linux-amd64 CHANGED
Binary file
gc_cli/bin/gc-linux-arm64 CHANGED
Binary file
Binary file
gc_cli/wrapper.py CHANGED
@@ -1,102 +1,102 @@
1
- """
2
- Wrapper module for GitCode CLI binary.
3
-
4
- This module provides a Python entry point that calls the appropriate
5
- pre-compiled binary based on the current platform.
6
- """
7
-
8
- import os
9
- import platform
10
- import subprocess
11
- import sys
12
- from pathlib import Path
13
-
14
- COMMAND_NAME_ENV = "GITCODE_CLI_COMMAND_NAME"
15
-
16
-
17
- def get_binary_name() -> str:
18
- """Get the binary name for the current platform."""
19
- system = platform.system().lower()
20
- machine = platform.machine().lower()
21
-
22
- # Map machine architecture
23
- arch_map = {
24
- "x86_64": "amd64",
25
- "amd64": "amd64",
26
- "aarch64": "arm64",
27
- "arm64": "arm64",
28
- }
29
- arch = arch_map.get(machine, "amd64")
30
-
31
- # Map system to binary name
32
- if system == "linux":
33
- return f"gc-linux-{arch}"
34
- elif system == "darwin":
35
- return f"gc-darwin-{arch}"
36
- elif system == "windows":
37
- return "gc-windows-amd64.exe"
38
- else:
39
- raise RuntimeError(f"Unsupported platform: {system} {machine}")
40
-
41
-
42
- def get_binary_path() -> Path:
43
- """Get the path to the binary for the current platform."""
44
- package_dir = Path(__file__).parent
45
- binary_name = get_binary_name()
46
- binary_path = package_dir / "bin" / binary_name
47
-
48
- if not binary_path.exists():
49
- raise FileNotFoundError(
50
- f"Binary not found for your platform: {binary_path}\n"
51
- f"Supported platforms: linux-amd64, linux-arm64, darwin-amd64, darwin-arm64, windows-amd64"
52
- )
53
-
54
- return binary_path
55
-
56
-
57
- def get_command_name() -> str:
58
- """Get the command name that should appear in CLI output."""
59
- command = Path(sys.argv[0]).stem.lower()
60
- if command in {"gc", "gitcode"}:
61
- return command
62
- if platform.system() == "Windows":
63
- return "gitcode"
64
- return "gc"
65
-
66
-
67
- def ensure_executable(binary_path: Path) -> None:
68
- """Ensure packaged binaries are executable on POSIX platforms."""
69
- if platform.system() == "Windows":
70
- return
71
- if not os.access(binary_path, os.X_OK):
72
- binary_path.chmod(0o755)
73
-
74
-
75
- def main() -> int:
76
- """Main entry point for the GitCode CLI command."""
77
- try:
78
- binary_path = get_binary_path()
79
-
80
- ensure_executable(binary_path)
81
- env = os.environ.copy()
82
- env.setdefault(COMMAND_NAME_ENV, get_command_name())
83
-
84
- # Run the binary with all arguments
85
- result = subprocess.run(
86
- [str(binary_path)] + sys.argv[1:],
87
- cwd=os.getcwd(),
88
- env=env,
89
- )
90
-
91
- return result.returncode
92
-
93
- except FileNotFoundError as e:
94
- print(f"Error: {e}", file=sys.stderr)
95
- return 1
96
- except Exception as e:
97
- print(f"Error running GitCode CLI: {e}", file=sys.stderr)
98
- return 1
99
-
100
-
101
- if __name__ == "__main__":
102
- sys.exit(main())
1
+ """
2
+ Wrapper module for GitCode CLI binary.
3
+
4
+ This module provides a Python entry point that calls the appropriate
5
+ pre-compiled binary based on the current platform.
6
+ """
7
+
8
+ import os
9
+ import platform
10
+ import subprocess
11
+ import sys
12
+ from pathlib import Path
13
+
14
+ COMMAND_NAME_ENV = "GITCODE_CLI_COMMAND_NAME"
15
+
16
+
17
+ def get_binary_name() -> str:
18
+ """Get the binary name for the current platform."""
19
+ system = platform.system().lower()
20
+ machine = platform.machine().lower()
21
+
22
+ # Map machine architecture
23
+ arch_map = {
24
+ "x86_64": "amd64",
25
+ "amd64": "amd64",
26
+ "aarch64": "arm64",
27
+ "arm64": "arm64",
28
+ }
29
+ arch = arch_map.get(machine, "amd64")
30
+
31
+ # Map system to binary name
32
+ if system == "linux":
33
+ return f"gc-linux-{arch}"
34
+ elif system == "darwin":
35
+ return f"gc-darwin-{arch}"
36
+ elif system == "windows":
37
+ return "gc-windows-amd64.exe"
38
+ else:
39
+ raise RuntimeError(f"Unsupported platform: {system} {machine}")
40
+
41
+
42
+ def get_binary_path() -> Path:
43
+ """Get the path to the binary for the current platform."""
44
+ package_dir = Path(__file__).parent
45
+ binary_name = get_binary_name()
46
+ binary_path = package_dir / "bin" / binary_name
47
+
48
+ if not binary_path.exists():
49
+ raise FileNotFoundError(
50
+ f"Binary not found for your platform: {binary_path}\n"
51
+ f"Supported platforms: linux-amd64, linux-arm64, darwin-amd64, darwin-arm64, windows-amd64"
52
+ )
53
+
54
+ return binary_path
55
+
56
+
57
+ def get_command_name() -> str:
58
+ """Get the command name that should appear in CLI output."""
59
+ command = Path(sys.argv[0]).stem.lower()
60
+ if command in {"gc", "gitcode"}:
61
+ return command
62
+ if platform.system() == "Windows":
63
+ return "gitcode"
64
+ return "gc"
65
+
66
+
67
+ def ensure_executable(binary_path: Path) -> None:
68
+ """Ensure packaged binaries are executable on POSIX platforms."""
69
+ if platform.system() == "Windows":
70
+ return
71
+ if not os.access(binary_path, os.X_OK):
72
+ binary_path.chmod(0o755)
73
+
74
+
75
+ def main() -> int:
76
+ """Main entry point for the GitCode CLI command."""
77
+ try:
78
+ binary_path = get_binary_path()
79
+
80
+ ensure_executable(binary_path)
81
+ env = os.environ.copy()
82
+ env.setdefault(COMMAND_NAME_ENV, get_command_name())
83
+
84
+ # Run the binary with all arguments
85
+ result = subprocess.run(
86
+ [str(binary_path)] + sys.argv[1:],
87
+ cwd=os.getcwd(),
88
+ env=env,
89
+ )
90
+
91
+ return result.returncode
92
+
93
+ except FileNotFoundError as e:
94
+ print(f"Error: {e}", file=sys.stderr)
95
+ return 1
96
+ except Exception as e:
97
+ print(f"Error running GitCode CLI: {e}", file=sys.stderr)
98
+ return 1
99
+
100
+
101
+ if __name__ == "__main__":
102
+ sys.exit(main())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitcode-cli
3
- Version: 0.5.7
3
+ Version: 0.5.14
4
4
  Summary: GitCode CLI - Command line tool for GitCode
5
5
  Author-email: GitCode CLI Contributors <support@gitcode.com>
6
6
  Maintainer-email: GitCode CLI Contributors <support@gitcode.com>
@@ -33,7 +33,7 @@ Dynamic: license-file
33
33
 
34
34
  [![Go Version](https://img.shields.io/badge/Go-1.22+-00ADD8?style=flat&logo=go)](https://golang.org)
35
35
  [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
36
- [![Release](https://img.shields.io/badge/Release-v0.5.7-blue)](https://gitcode.com/gitcode-cli/cli/releases)
36
+ [![Release](https://img.shields.io/badge/Release-v0.5.9-blue)](https://gitcode.com/gitcode-cli/cli/releases)
37
37
 
38
38
  GitCode 命令行工具,为 GitCode 用户提供便捷的命令行操作体验。
39
39
 
@@ -55,6 +55,7 @@ GitCode 命令行工具,为 GitCode 用户提供便捷的命令行操作体验
55
55
  - [回归说明](./docs/REGRESSION.md)
56
56
  - [打包说明](./docs/PACKAGING.md)
57
57
  - [AI 操作指南(外部项目)](./docs/AI-GUIDE.md)
58
+ - [应用案例库](./Example/index.md)
58
59
  - [开发规范](./spec/README.md)
59
60
  - [真相源矩阵](./spec/governance/source-of-truth-matrix.md)
60
61
  - [AI 本地开发流程](./spec/workflows/ai-local-development-workflow.md)
@@ -98,10 +99,10 @@ export PATH="$HOME/.local/bin:$PATH"
98
99
 
99
100
  ```bash
100
101
  # 从 Releases 下载 .deb 包
101
- wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.7/gc_0.5.7_amd64.deb
102
+ wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.9/gc_0.5.9_amd64.deb
102
103
 
103
104
  # 安装
104
- sudo dpkg -i gc_0.5.7_amd64.deb
105
+ sudo dpkg -i gc_0.5.9_amd64.deb
105
106
  ```
106
107
 
107
108
  DEB/RPM packages install both `gc` and `gitcode`; on Linux they are equivalent.
@@ -110,10 +111,10 @@ DEB/RPM packages install both `gc` and `gitcode`; on Linux they are equivalent.
110
111
 
111
112
  ```bash
112
113
  # 从 Releases 下载 .rpm 包
113
- wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.7/gc-0.5.7-1.x86_64.rpm
114
+ wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.9/gc-0.5.9-1.x86_64.rpm
114
115
 
115
116
  # 安装
116
- sudo rpm -i gc-0.5.7-1.x86_64.rpm
117
+ sudo rpm -i gc-0.5.9-1.x86_64.rpm
117
118
  ```
118
119
 
119
120
  DEB/RPM packages install both `gc` and `gitcode`; on Linux they are equivalent.
@@ -129,7 +130,7 @@ source .venv/bin/activate # Linux/macOS
129
130
  # .venv\Scripts\activate # Windows
130
131
 
131
132
  # 安装(一行命令)
132
- pip install https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.7/gitcode_cli-0.5.7-py3-none-any.whl
133
+ pip install https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.9/gitcode_cli-0.5.9-py3-none-any.whl
133
134
 
134
135
  # Windows PowerShell 中推荐使用 gitcode,避免 gc 被内置 Get-Content 别名覆盖
135
136
  gitcode version
@@ -139,6 +140,12 @@ gitcode version
139
140
  - wheel 会同时安装 `gc` 和 `gitcode` 两个命令入口,功能相同。
140
141
  - DEB/RPM 包也会同时安装 `gc` 和 `gitcode`;Linux 上二者功能相同。
141
142
  - Windows PowerShell 预置 `gc` 作为 `Get-Content` 别名;如果 `gc version` 被解析为读取文件,请改用 `gitcode version`、`gc.exe version` 或 `python -m gc_cli version`。
143
+ - Windows PowerShell 中通过 `--body-file -` / `--comment-file -` 管道传入中文或其他非 ASCII 正文时,推荐使用 UTF-8 文件;如果必须直接管道,先设置 `$OutputEncoding = [System.Text.UTF8Encoding]::new($false)`。CLI 会拦截疑似已被 PowerShell 损坏成 `???` 的输入并提示正确用法。
144
+
145
+ ```powershell
146
+ Set-Content -Path body.md -Value "中文正文" -Encoding UTF8
147
+ gitcode issue create -R owner/repo --title "标题" --body-file body.md
148
+ ```
142
149
 
143
150
  ### PyPI(备选)
144
151
 
@@ -155,31 +162,27 @@ pip install gitcode-cli
155
162
  gitcode version
156
163
  ```
157
164
 
158
- ### 预编译二进制文件
165
+ ### Linux 二进制文件
159
166
 
160
- 从 Release Assets 直接下载对应平台的二进制文件:
167
+ 从 Release Assets 直接下载 Linux 二进制文件:
161
168
 
162
169
  | 平台 | 文件 |
163
170
  |------|------|
164
- | Linux x64 | `gc_<version>_linux_amd64.tar.gz` |
165
- | Linux ARM64 | `gc_<version>_linux_arm64.tar.gz` |
166
- | macOS Intel | `gc_<version>_darwin_amd64.tar.gz` |
167
- | macOS Apple Silicon | `gc_<version>_darwin_arm64.tar.gz` |
168
- | Windows x64 | `gc_<version>_windows_amd64.zip` |
171
+ | Linux x64 | `gc_linux_amd64` |
172
+ | Linux ARM64 | `gc_linux_arm64` |
169
173
 
170
174
  下载地址: https://gitcode.com/gitcode-cli/cli/releases
171
175
 
172
- 解压后将二进制文件放到 PATH 目录:
176
+ 下载后赋予可执行权限,并放到 PATH 目录:
173
177
 
174
178
  ```bash
175
- # Linux/macOS
176
- tar -xzf gc_*.tar.gz
177
- mv gc ~/.local/bin/
178
-
179
- # Windows
180
- # 解压 zip 文件后,将 gc.exe 放到 PATH 目录
179
+ chmod +x gc_linux_amd64
180
+ mv gc_linux_amd64 ~/.local/bin/gc
181
+ gc version
181
182
  ```
182
183
 
184
+ Windows 和 macOS 用户建议使用上方 wheel 包;wheel 内置 Linux、macOS 和 Windows 二进制,并同时提供 `gc` 与 `gitcode` 两个命令入口。
185
+
183
186
  ### 规划中的安装方式
184
187
 
185
188
  以下安装方式正在开发中:
@@ -251,6 +254,8 @@ gc auth status
251
254
  # 结构化输出
252
255
  gc issue list -R owner/repo --json
253
256
  gc issue list -R owner/repo --format json
257
+ gc repo log -R owner/repo --file README.md --branch main --json
258
+ gc pr list -R owner/repo --paginate --per-page 100 --json
254
259
 
255
260
  # 常规文本与表格
256
261
  gc issue list -R owner/repo --format simple
@@ -262,6 +267,9 @@ gc issue list -R owner/repo --time-format relative
262
267
 
263
268
  # 自定义模板输出
264
269
  gc issue list -R owner/repo --template '{{range .}}#{{.Number}} {{.Title}}{{"\n"}}{{end}}'
270
+
271
+ # typed command 尚未覆盖的 API,可用 gc api 读取原始响应
272
+ gc api repos/owner/repo
265
273
  ```
266
274
 
267
275
  `issue view` 和 `pr view` 的文本详情展示也会保持稳定布局,而 `--json` 仍然是面向机器调用的首选入口。
@@ -274,6 +282,9 @@ gc issue list -R owner/repo --template '{{range .}}#{{.Number}} {{.Title}}{{"\n"
274
282
  # 查看仓库
275
283
  gc repo view
276
284
 
285
+ # 查看文件提交历史
286
+ gc repo log -R owner/repo --file README.md --branch main
287
+
277
288
  # 创建 Issue
278
289
  gc issue create --title "Bug report" --body "Description"
279
290
 
@@ -283,6 +294,12 @@ gc issue list --state open
283
294
  # 创建 PR
284
295
  gc pr create --title "New feature" --base main
285
296
 
297
+ # 按提交信息反查 PR
298
+ gc pr list -R owner/repo --commit-message "fix login"
299
+
300
+ # 调用 GitCode API 原始响应
301
+ gc api repos/owner/repo
302
+
286
303
  # 查看认证状态
287
304
  gc auth status
288
305
  ```
@@ -0,0 +1,15 @@
1
+ gc_cli/__init__.py,sha256=s7CqTQr3874eS2b3sL_YArG_1x1xr1VlpbJkc1T1wSQ,243
2
+ gc_cli/__main__.py,sha256=fqZ9iOh0ac8K_B9WmHydaxokzIivd5QBPJoNqgXnugo,154
3
+ gc_cli/wrapper.py,sha256=vq6JZIs7nZx_FugIljMjpNb0nxTiC0lQqfZ7Dhz6aMw,2744
4
+ gc_cli/bin/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ gc_cli/bin/gc-darwin-amd64,sha256=DcQYJRQ4OamMiAO8wD3qzN8SkOEam0rdp3lk4zZwYAw,8579248
6
+ gc_cli/bin/gc-darwin-arm64,sha256=OAjdRq-LAm8HQHcK2Y5yJwPH8qsGf-_ARjfshx5v7YU,8249954
7
+ gc_cli/bin/gc-linux-amd64,sha256=tF5Hro4iOKRHmJRxS7WYOCebvEY3XLbbe5Cbw2ShoUw,8355992
8
+ gc_cli/bin/gc-linux-arm64,sha256=JZ2XTQFP6Rrpt9nXa99X1FT0fjNG2mp8EDK9pckpUik,8061080
9
+ gc_cli/bin/gc-windows-amd64.exe,sha256=_0RR_-ej27PBlsjcKds22y41nqXt1Deg1N7n8aGLmOQ,8647680
10
+ gitcode_cli-0.5.14.dist-info/licenses/LICENSE,sha256=WsjkQaj0PPK_TKVoHDok218rd8JZdj1GIJ5TrrZD6jE,1253
11
+ gitcode_cli-0.5.14.dist-info/METADATA,sha256=Xc1CNG3wfJhS3UeeDKJfB41J4J2GH6BK1f1fuiQBxq8,10799
12
+ gitcode_cli-0.5.14.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
13
+ gitcode_cli-0.5.14.dist-info/entry_points.txt,sha256=DresfT5jkpwU3fPn8n0MTao1m5QZi3XEulKFbQ8BYYY,73
14
+ gitcode_cli-0.5.14.dist-info/top_level.txt,sha256=2fSmR3kQ-XhdgFQdVvWmZcEyERJKVZVxOhk7tna1Sus,7
15
+ gitcode_cli-0.5.14.dist-info/RECORD,,
@@ -1,28 +1,28 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 gitcode-cli contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
22
-
23
- ---
24
-
25
- This project is inspired by and references the GitHub CLI (https://github.com/cli/cli),
26
- which is also licensed under the MIT License.
27
-
1
+ MIT License
2
+
3
+ Copyright (c) 2026 gitcode-cli contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ This project is inspired by and references the GitHub CLI (https://github.com/cli/cli),
26
+ which is also licensed under the MIT License.
27
+
28
28
  Copyright (c) 2019 GitHub, Inc.
@@ -1,15 +0,0 @@
1
- gc_cli/__init__.py,sha256=Yi08ftr-OFw-AKkpunO7GnQYUFvOxEi_PcmNk6Y66bg,253
2
- gc_cli/__main__.py,sha256=4IoaQc5w_ZsLDqiDifrGjllM76LLLUM2CSz2ifmwMmY,163
3
- gc_cli/wrapper.py,sha256=-nQsDyCvTunhgK24tuJ_tjqJJ1ErRs0hPfdHmUh1JDM,2846
4
- gc_cli/bin/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- gc_cli/bin/gc-darwin-amd64,sha256=86OynZA78i5oU1JpuFXfWZ_Enk5pFDTLGsQh0TuWqyQ,8368128
6
- gc_cli/bin/gc-darwin-arm64,sha256=NjBFW2RdQ5bMLezc-DNU2IfHI22ugMXdI652HtTvaZA,8033042
7
- gc_cli/bin/gc-linux-amd64,sha256=Y3rU80teEZgaecIui-IcrGEIWoM75Q1eWNicwQ3bU3o,8147096
8
- gc_cli/bin/gc-linux-arm64,sha256=OEhpygfb8UyME5tZm8-jf04eVZ6wA0TOcqlw9D5VDwM,7864472
9
- gc_cli/bin/gc-windows-amd64.exe,sha256=WUpXhetlzOYzogGMc5veR9oFTvimO-ebA3V5DJVFHkg,8434688
10
- gitcode_cli-0.5.7.dist-info/licenses/LICENSE,sha256=23d4Rfrm1CLX092oLjzs2UTYcy5Sp-dpaji0IAHIsiE,1280
11
- gitcode_cli-0.5.7.dist-info/METADATA,sha256=SCdrHbhohqekVplE9qjoEpTgKowN0XPzRb69C9jnQLA,9918
12
- gitcode_cli-0.5.7.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
13
- gitcode_cli-0.5.7.dist-info/entry_points.txt,sha256=DresfT5jkpwU3fPn8n0MTao1m5QZi3XEulKFbQ8BYYY,73
14
- gitcode_cli-0.5.7.dist-info/top_level.txt,sha256=2fSmR3kQ-XhdgFQdVvWmZcEyERJKVZVxOhk7tna1Sus,7
15
- gitcode_cli-0.5.7.dist-info/RECORD,,