git-fish-log 1.0.1 → 1.0.2
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,4 +23,12 @@
|
|
|
23
23
|
|
|
24
24
|
因为:
|
|
25
25
|
|
|
26
|
-
> 每一条 Commit,都是程序员留下的生活痕迹。
|
|
26
|
+
> 每一条 Commit,都是程序员留下的生活痕迹。
|
|
27
|
+
|
|
28
|
+
配置/新增 GitLab 远程扫描源(支持多数据源管理):
|
|
29
|
+
```bash
|
|
30
|
+
fish config gitlab <token> [host] [name]
|
|
31
|
+
```
|
|
32
|
+
* `token`: 你的 GitLab 个人/项目访问令牌 (PAT),需有 `read_api` 或 `api` 权限。
|
|
33
|
+
* `host`: 可选。私有部署的 GitLab 域名(如 `https://gitlab.mycompany.com`),缺省默认使用 `https://gitlab.com`。
|
|
34
|
+
* `name`: 可选。给该数据源指定的别名(如 `my-company`),缺省时自动使用 host 域名作为别名。若别名已存在则会覆盖更新。
|