Quellcode durchsuchen

add git email/username setup

Jeremy Zheng vor 1 Woche
Ursprung
Commit
0efa5b245d
3 geänderte Dateien mit 13 neuen und 2 gelöschten Zeilen
  1. 1 0
      ISSUES.md
  2. 10 1
      README.md
  3. 2 1
      linux/README.md

+ 1 - 0
ISSUES.md

@@ -0,0 +1 @@
+# 常见问题

+ 10 - 1
README.md

@@ -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 "邮箱"
+  ```
+
 - 获得项目地址
 
   ![Clone by https](images/git/repo-url.png)
@@ -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`内容添加到你的账户

+ 2 - 1
linux/README.md

@@ -16,7 +16,8 @@
 
 - LFS
   - 安装[VirtualBox for Windows](../softwares/windows/VirtualBox-7.2.6a-172322-Win.exe)
-  - 安装[LFS系统](books/LFS-BOOK-13.0-SYSD.pdf)
+  - 创建虚拟机,网络使用`Bridged Adapter`
+  - 安装[Linux From Scratch](books/LFS-BOOK-13.0-SYSD.pdf)
 
 ## 参考手册