git config --global user.name "name" git config --global user.email "email"
name和email是註冊github的暱稱和郵箱。git
一、 打開git bash.exegithub
二、檢查是否已經有SSH Key$ cd ~/.ssh
shell
三、生成SSH Keyssh-keygen -t rsa -C "youremail"
bash
第一次生成的話,直接一路回車,不須要輸入密碼。不是第一次生成的話,會提示 overwrite (y/n)? 問你是否覆蓋舊的 SSH Key ,直接填 y ,而後一直回車就好了,最後獲得了兩個文件:id_rsa和id_rsa.pub。
ssh
四、記事本打開/C/Users/Administrator/.ssh/下id_rsa.pub文件,複製該段信息;登陸github帳戶,點擊頭像進入Settings -> SSH and GPG keys -> New SSH key,將複製的信息粘貼到該處。
ide
五、測試是否成功$ssh -T git@github.com
測試
提示「Hi xxx! You've successfully authenticated, but GitHub does not provide shell access.」說明添加成功。ui
1.github新建Repository3d
Repository地址爲code
更改Settings裏GitGub Pages的source爲master branch選項能夠獲取項目靜態地址,能夠發佈靜態頁面。
二、打開項目文件夾,使用git命令窗口,執行如下代碼複製剛剛建立的倉庫到本地
$ git clone https://github.com/zhaohuihuizoe/test.git
三、將要上傳的代碼放到該文件夾中
四、執行git add .
五、添加註釋語句,執行git commit -m "註釋語句"
六、同步到倉庫,執行git push origin master
七、刷新倉庫地址,能夠看到新增的文件已經上傳到git上了