操作筆記、安裝git、下載github專案
安裝git:
Git - Downloads (git-scm.com)

Windows

Git-2.32.0.2-64-bit.exe

下載路徑

Git-2.32.0.2-64-bit.exe
產生SSH 密鑰:
Generating a new SSH key
1. Open Git Bash.
git-bash.exe
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Enter file in which to save the key (/c/Users/user/.ssh/id_rsa)

/c/Users/user/.ssh/id_rsa

.txt
下載github專案
GitHub
step1、辦帳號
step2、設定

Settings

SSH and GPG keys

公開金鑰貼上去
命令提示字元
- Check git是否安裝完成
git

git
git --version

git version 2.32.0.windows.2
設定名子
git config --global user.name "Your Name"
設定email
git config --global user.email "Your Email"

名子&&email
GIT使用
1. 創建資料夾
2. 開啟命令提示字元
cd 該資料夾路徑

命令提示字元
3. Github上挑選喜歡的內容
- Code > Clone > SSH >複製

https://github.com/ldkrsi/jieba-zh_TW
4. 指令
git clone xxx

git clone
參考資料:
[2]. github基本教學 - 從無到有 - YouTube
[3]. Generating a new SSH key and adding it to the ssh-agent - GitHub Docs