GitHub 基礎配置記錄

2021-08-07 13:48:07 字數 984 閱讀 6220

姓名郵箱設定:

git config –-global user.name / email ***//g是小寫,不知道為什麼發表後自動大寫。。。

git config –-global color.ui auto

檢視使用cat ~/.gitconfig

建立ssh

建立資料夾mkdir .ssh//如果有建議清楚重新配置

進入資料夾cd ~/.ssh

開啟ssh-agent:eval $(ssh-ageny -s)

建立ssh-keygen -t rsa -c 「email」

複製clip < ~/id_rsa.pub

測試ssh後可能出現的情況

1,warning: permanently added 」 (rsa) to the list of known hosts.

permission denied (publickey).

原因:防火牆可能拒絕ssh連線:轉殖使用過ssh的埠

或是ssh-agent未開啟:eval $(ssh-ageny -s)

2,could not open a connection to your authentication agent

原因:ssh-agent未開啟:eval $(ssh-ageny -s)

3,大小寫敏感 //不管是什麼提醒都要先檢查

Github使用記錄

git add git commit m message git push repository name branch name git status git stash list git stash clear git stash git stash pop stash git pull rep...

github使用記錄

首先。得去官網上註冊上乙個賬號,我也下了乙個github的軟體。但是網頁版也可以建立 的。這裡,我覺得最讓人腦闊疼的是它全是英文!不過也體現了谷歌瀏覽器的強大,讓我想起來了node裡不是有個jade是強依賴性嘛,我覺得我對谷歌的感情就是這樣的。不過還是認為多用用英文的,剛開始磕磕絆絆,習慣以後也是可...

Github不記錄Contributions的問題

寫部落格的時候一直用的sublime text,然後用配置好的mygitcommit push,這次寫nforumsdk的時候,用了eclipse整合的外掛程式egit,然後發現所有用eclipsepush的github都沒有記錄在contributions裡,contributions calen...