安裝git
在終端輸入
git config --global user.name "username"
git config --global user.email "username@mail.com"
- 創(chuàng)建秘鑰
ssh-keygen -t rsa -C "username@mail.com"
- 復(fù)制秘鑰
~/.ssh/id_rsa.pub
- 轉(zhuǎn)到你的github賬戶陌选,進(jìn)入settings,點(diǎn)擊左側(cè)的"SSH Keys"蹄溉,再點(diǎn)擊右側(cè)的"Add SSH Key"咨油,在上方空格處添加一個(gè)標(biāo)簽如"timo@node7",在下方大空格處粘貼你剛剛復(fù)制的公共秘鑰柒爵,然后在終端輸入
ssh -T git@github.com
- 在github上創(chuàng)建倉(cāng)庫(kù)臼勉,然后復(fù)制clone下面的SSH(HTTPS會(huì)有問(wèn)題),然后再終端輸入
git clone 剛剛復(fù)制的git地址
- 然后本地就可以看到clone下來(lái)的倉(cāng)庫(kù)啦餐弱,每次上傳github的三部曲:
git add -A; DATE=$(date "+%Y%m%d"); git commit -m $DATE --no-verify; git push
參考
https://zhuanlan.zhihu.com/p/60727196
https://stackoverflow.com/questions/6565357/git-push-requires-username-and-password