24 lines
590 B
Markdown
24 lines
590 B
Markdown
# 项目规则
|
|
|
|
## Git 仓库信息
|
|
|
|
| 项目 | 远程地址 | 分支 |
|
|
|------|---------|------|
|
|
| 主仓库 (miniapp-api) | `https://git.dxz99wyr.cn/Superuser/miniapp-api.git` | master |
|
|
| miniapp 子模块 | `https://git.dxz99wyr.cn/Superuser/miniapp-web.git` | master |
|
|
| backend 子模块 | backend 目录 | - |
|
|
|
|
## Git 凭据
|
|
|
|
- 用户名: `Superuser`
|
|
- 密码: `Admin@123`
|
|
- 凭据已存入 git credential store,无需手动输入
|
|
|
|
## Git 推送命令
|
|
|
|
推送时需要关闭 SSL 验证(服务器 SSL 证书问题):
|
|
|
|
```bash
|
|
git -c http.sslVerify=false push origin master
|
|
```
|