最近須要將課設代碼上傳到Github上,以前只是用來fork別人的代碼。html
這篇文章寫得是windows下的使用方法。linux
第一步:建立Github新帳戶git
第二步:新建倉庫github
第三部:填寫名稱,簡介(可選),勾選Initialize this repository with a README選項,這是自動建立REAMDE.md文件,省的你再建立。shell
第四步:安裝Github shell程序,地址:http://windows.github.com/windows
第五步:打開Git Shell,輸入如下命令生成密鑰來驗證身份服務器
ssh-keygen -C 'your@email.address' -t rsa
連續三個回車以後會在windows當前用戶目錄下生成.ssh文件夾,和linux同樣。ssh
把文件夾下的id_rsa.pub文件內容所有複製。ide
而後打開github帳戶設置,如圖測試
打開ssh keys
而後在title隨便輸入,key欄粘貼剛纔的密鑰。
第六步:在Git Shell下輸入命令測試剛纔的公鑰是否定證正確。
ssh -T git@github.com
正確結果會顯示:
Warning:Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts. Hi Flowerowl! You've successfully authenticated, but GitHub does not provide shell access.
warning 不用理會。
第七步:clone剛纔新建的repository 到本地,輸入命令:
git clone https://github.com/Flowerowl/stumansys.git
這時會在目錄下生成:
第八步:將想上傳的代碼目錄拷貝到此文件夾下:
第九步:切換到Git shell 命令行下,輸入命令:
git init git commit -m 'stumansys' git remote add origin https://github.com/Flowerowl/stumansys.git git push origin master
若是執行git remote add origin
https://github.com/Flowerowl/stumansys.git
,出現錯誤:
fatal: remote origin already exists
則執行如下語句:
git remote rm origin
再日後執行git remote add origin https://github.com/Flowerowl/stumansys.git 便可。
在執行git push origin master時,報錯:
error:failed to push som refs to.......
則執行如下語句:
git pull origin master
先把遠程服務器github上面的文件拉先來,再push 上去。
最後,你能夠去項目頁面查看了~~代碼上傳成功!
有問題能夠在下方留言,你們一塊兒解決~
轉載請註明:吉吉於 » Github上傳代碼菜鳥超詳細教程