git clone 某個分支或者全部分支

clone 某個分支python

   git clone -b  dev5   https://git.coding.net/aiyongbao/tradepc.git git

 

clone 全部分支.net

   git   clone  https://git.coding.net/aiyongbao/tradepc.git   blog

     git  branch -rip

     git checkout dev5rem

 

http://blog.csdn.net/xqs83/article/details/7382074/it

 

git clone默認會把遠程倉庫整個給clone下來; 
但只會在本地默認建立一個master分支
若是遠程還有其餘的分支,此時用git branch -a查看全部分支:ast

  1. * master   
  2. remotes/origin/HEAD -> origin/master  
  3. remotes/origin/master   
  4. remotes/origin/python_mail.skin   
  5. remotes/origin/udisk   
  6. remotes/origin/vip

能看到遠程的全部的分支,如remotes/origin/python_mail.skin 
可使用checkout命令來把遠程分支取到本地,並自動創建trackingcoding

  1. $ git checkout -b python_mail.skin origin/python_mail.skin
  2. Branch python_mail.skin set up to track remote branch python_mail.skin from origin
  3. Switched to a new branch 'python_mail.skin'

或者使用-t參數,它默認會在本地創建一個和遠程分支名字同樣的分支
摺疊展開復制代碼di

  1. $ git checkout -t origin/python_mail.skin
相關文章
相關標籤/搜索