操作筆記、安裝git、下載github專案
安裝git:
產生SSH 密鑰:
1. Open Git Bash.
2. Paste the text below, substituting in your GitHub email address.
$ 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
下載github專案
step1、辦帳號
step2、設定
命令提示字元
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"
GIT使用
1. 創建資料夾
2. 開啟命令提示字元
cd 該資料夾路徑
3. Github上挑選喜歡的內容
https://github.com/ldkrsi/jieba-zh_TW
4. 指令
git clone xxx
參考資料: