在github上建立遠(yuǎn)程倉庫
打開Git Bash ---- cd到本地項(xiàng)目 目錄
git init ----建立git倉庫
git add . ----將 項(xiàng)目所有文件添加到倉庫中 如果想添加某個(gè)特定的文件凤瘦,只需把.換成特定的文件名即可
git commit -m "提交說明" ----將add的文件commit到倉庫
git remote add origin https://github.com/hanhailong/CustomRatingBar
git pull origin master
git push -u origin master
//配置sshkey
http://jingyan.baidu.com/article/a65957f4e91ccf24e77f9b11.html