This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
flowchart TD
A[开始: 在新电脑操作] --> B{生成SSH密钥}
B --> C[复制公钥<br>(cat ~/.ssh/id_ed25519.pub)]
C --> D[登录Gerrit网页<br>Settings -> SSH Keys]
D --> E[粘贴并添加公钥]
E --> F{选择克隆方式}
F -- 推荐 --> G[SSH协议克隆<br>git clone ssh://renjianbo@...]
F -- 备用 --> H[HTTP协议克隆<br>git clone http://...]
G --> I[进入目录并验证]
H --> I
I --> J[配置本地用户信息]
J --> K[完成]