##上傳代碼
第一步:建立git倉庫
cd到你的本地項(xiàng)目根目錄下台丛,執(zhí)行g(shù)it命令
git init
第二步:將項(xiàng)目的所有文件添加到倉庫中
git add .
第三步:將add的文件commit到倉庫
git commit -m "注釋語句"
第四步:去github上創(chuàng)建自己的Repository缚柏,拿到創(chuàng)建的倉庫的https地址
第五步:關(guān)鍵地方,將本地的倉庫關(guān)聯(lián)到github上
git remote add origin https://github.com/hanhailong/CustomRatingBar??
后面的https鏈接地址換成你自己的倉庫url地址
第六步:上傳github之前叨叙,要先pull一下锭弊,執(zhí)行如下命令:
git pull origin master
第七步,也就是最后一步擂错,上傳代碼到github遠(yuǎn)程倉庫
git push -u origin master
@附錄常見bug
1git Updates were rejected because the remote contains work that you do?
? 解決:http://blog.csdn.net/jeffasd/article/details/49911847