2021-08-08|閱讀時間 ‧ 約 3 分鐘

git&github

操作筆記、安裝git、下載github專案

安裝git:

Windows
Git-2.32.0.2-64-bit.exe
下載路徑
Git-2.32.0.2-64-bit.exe

產生SSH 密鑰:

1. Open Git Bash.
git-bash.exe
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
.txt

下載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

參考資料:

[1].
[2].
[3].
[4].
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.