標籤:href 報錯 重新整理 arc htm 下載 建立倉庫 www war
1、建立倉庫
命名就new吧,選中預設建立倉庫說明書
2、下載軟體,地址:http://windows.github.com/ ,安裝後會有
前應該是緩衝的本地,後是git工具吧,我是window7,有個提示,又按指引裝了Win7AndW2K8R2-KB3134760-x64.msu,重啟
3、本地git,選擇下帳號,我之前裝過,所有有兩個帳號,分不清時,這樣做
git config --global user.name "XXX",這裡"XXX"是註冊的使用者名稱
git config --global user.email [email protected],這裡的郵箱是註冊時的郵箱
4、然後複製倉庫,我不知該步驟是否必須
ssh -T [email protected]
git clone https://github.com/findingsea/new.git
https://github.com/findingsea/new.git:這個地址自己去複製自己的倉庫
Cloning into ‘myRepoForBlog‘... Warning: Permanently added ‘github.com,207.97.227.239‘ (RSA) to the list of known hosts. remote: Counting objects: 3, done. remote: Total 3 (delta 0), reused 0 (delta 0) Receiving objects: 100% (3/3), done.
然後這樣就是好了
5、關鍵的來了
cd C:\Users\lihaihong\Documents\GitHub\new 到這裡,路徑位置還沒知道怎麼改,最好是要改的
git add .
git commit -m ‘xxxxxx‘ 修改的描述
git remote rm origin
git remote add origin https://github.com/findingsea/new.git
git push origin master
這樣就是好了,回去重新整理一下,嗯,是好了
沒遇到git push origin master報錯,若有,試試git pull origin master
6、github案頭,上個表徵圖開啟,發現複製的和修改的每一次操作,在這裡都有
參考文獻:
http://www.cnblogs.com/findingsea/archive/2012/08/27/2654549.html
http://wuwenhui.blog.51cto.com/5954817/1559569
github檔案上傳教程