|
|
@@ -1,11 +1,20 @@
|
|
|
# 闲人指路
|
|
|
|
|
|
+- [常见问题](ISSUES.md)
|
|
|
+
|
|
|
## 创建用户
|
|
|
|
|
|
## 克隆项目
|
|
|
|
|
|
- 下载并安装[git for windows](softwares/windows/Git-2.53.0.2-64-bit.exe)
|
|
|
- 打开git bash: 右键点击工作目录选择“Git Bash Here”
|
|
|
+- 设置git账户信息
|
|
|
+
|
|
|
+ ```bash
|
|
|
+ git config --global user.name "用户名"
|
|
|
+ git config --global user.email "邮箱"
|
|
|
+ ```
|
|
|
+
|
|
|
- 获得项目地址
|
|
|
|
|
|

|
|
|
@@ -22,7 +31,7 @@ git clone https://git.wikipali.org/iapt-platform/tutorial.git
|
|
|
|
|
|
```bash
|
|
|
mkdir .ssh
|
|
|
- ssh-keygen -t rsa -f .ssh/id_rsa -b 4096 -C "你的邮箱"
|
|
|
+ ssh-keygen -t rsa -f .ssh/id_rsa -b 4096 -C "邮箱"
|
|
|
```
|
|
|
|
|
|
- 把`.ssh/id_rsa.pub`内容添加到你的账户
|