Github備記

edagarli發表於2014-04-21

第一步:建立Github新賬戶

第二步:新建倉庫

newgithub

第三部:填寫名稱,簡介(可選),勾選Initialize this repository with a README選項,這是自動建立REAMDE.md檔案,省的你再建立。

createdemo

第四步:安裝Github shell程式,地址:http://windows.github.com/

第五步:開啟Git Shell,輸入以下命令生成金鑰來驗證身份

ssh-keygen -C 'your@email.address' -t rsa

連續三個回車之後會在windows當前使用者目錄下生成.ssh資料夾,和linux一樣。

ssh3

把資料夾下的id_rsa.pub檔案內容全部複製。

然後開啟github賬戶設定,如圖

setting

開啟ssh keys

ssh
右上角點選add ssh key

ssh2

然後在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 到本地,輸入命令:

link

 git clone https://github.com/Flowerowl/stumansys.git

這時會在目錄下生成:

desk

第八步:將想上傳的程式碼目錄拷貝到此資料夾下:

code

第九步:切換到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 上去。

cmd

最後,你可以去專案頁面檢視了~~程式碼上傳成功!


2.新增新版本庫出錯

git push origin master

error: src refspec master does not match any.

error: failed to push some refs to 'git@localhost:mysite.git'

解決方法:
在工作目錄中加一個檔案
touch README
git add README 
git commit -m 'first commit'
git push origin master

相關文章