1. 程式人生 > >Xcode自帶git將本地專案上傳到GitHub

Xcode自帶git將本地專案上傳到GitHub

1.cd到你的專案目錄下
2.git init
3.git add .
4.git commit -m "first commit"
5.git remote add origin https://github.com/icefishlily/audioPlayer_2.git//換成你自己的url
6.git push -f origin master
7.輸入你的github的帳號密碼成功後如圖

 
6.上傳圖片,在github裡面點選README新增檔案

README內容格式如下 
 
 
(http://github.com/yourorganization/your-repository/raw/master/imagespaths/xxx.png)
   

 
    yourorganization--- 你的organization名字
    your-respository--- 你的respository
    imagespaths--- 你存放圖片的資料夾,如果是直接放在 project 的專案根目錄的話,就可以省略這個
    xxx.png--- 你的圖片名
 
我的README中內容如下,
![image](https://github.com/CKDemo/text/raw/master//Appicon.png)
要自己設定的:yourorganization,yourrepository,imagespaths,xxx.png。
我的圖片在專案中位置如下