上傳GitHub的方式有兩種:
第一種:
前往個(gè)人主頁(yè)立镶,新建一個(gè)repository(網(wǎng)頁(yè)右上方),會(huì)要輸入一些信息:
輸入Repository name和描述瑟曲,然后選創(chuàng)建澡刹,會(huì)看到repository的鏈接:
新建工程,勾選options--Source Control -- Create Git repository on,將復(fù)制的地址粘貼到server address里面
3 添加好后在xcode菜單欄的Source Control里面選擇Push即可
第二種:你已經(jīng)創(chuàng)建好了項(xiàng)目挪挤,需要在gitHub上傳項(xiàng)目:
打開(kāi)終端
1 cd /Users/項(xiàng)目(項(xiàng)目路徑)
2 git init
3 git add .(有點(diǎn))
4 git commit -m "swift bluetooth"(“”里面是釋語(yǔ)叼丑,隨便寫(xiě))
5.git remote add origin https://github.com/yanglu123/YLBarChart.git(github的repository鏈接)
6.git push -u origin master