1.下載客戶端github(必須下載,須要該軟件所提供的Git shell輸入命令來上傳項目)下載地址: https://github-windows.s3.amazonaws.com/GitHubSetup.exe git
2,點擊建立一個新的倉庫github
輸入項目名稱,選擇性添加描述,該描述會顯示在Reademe文件中shell
3,打開Git shellwindows
輸入:ssh-keygen -t rsa -C "用戶名/郵箱"ssh
回車後顯示存放key和項目(須要把項目放在該文件夾中)的文件路徑(默認在C盤,能夠選擇其餘路徑):3d
連續回車:blog
4,找到點擊id_rsa.pub,複製裏面的密鑰rem
接着在本身的GitHub主頁上,找到下圖箭頭位置,將密鑰複製,而後Add SSH Keyit
5,執行: ssh -T git@github.comast
輸入yes
6,輸入:git clone https://github.com/settings/ssh/new
後面的http是你的倉庫的地址
此時會在剛纔建立ssh key的默認目錄下生成以你倉庫名爲文件名的文件
7,將本身的項目複製到該文件夾中
8,打開Git Shell輸入如下命令
git init
git add "文件名"
git commit -m "文件名"
過程當中可能出現 *** Please tell me who you are.
此時按照他的命令提示 git config --global user.email "you@example.com" 輸入郵箱
在此執行commit命令便可成功
9,輸入命令
git remote rm origin
git remote add origin https://github.com/settings/ssh/new
git pull origin master
git push origin master 可能須要輸入你的用戶名密碼,輸入以後等待便可上傳
10,刷新便可看到上傳成功