從Github上clone一個分支(Google sample):
git clone https://github.com/googlesamples/android-architecture.git
git branch -a //列出所有分支
git checkout -b local-branch-name origin/todo-mvp //-b后面的參數是你將遠程分支拉倒本地的本地分支名.后面的參數就是git branch -a 列出的遠程分支的分支名
如果要push到遠程倉庫
git remote add origin git@github.com:yourId/yourRepository
git push -u origin
注意由于眾所周知的墻,所以你很可能無法push订框,會提示你Timeout耕魄。一個簡單的方法就是弄個http的代理
git config --global http.proxy ip:port
git config --global https.proxy ip:port
最后再
git push -u origin
將本地的origin遠程分支push上去