1. 程式人生 > >git 有多個分支,改變工作區,拉取遠端分支並建立本地分支

git 有多個分支,改變工作區,拉取遠端分支並建立本地分支

方法一:

[[email protected] hospitalsecurity]$ git branch

master

hospitalsecurity的主分支是master,現在想拉新分支coreui-theme的時候,首先要

> git fetch origin coreui-theme

然後

> git checkout coreui-theme

再次檢視分支,可以看到工作區已換到coreui-theme

[[email protected] hospitalsecurity]$ git branch

* coreui-theme

master

方法二:

使用如下命令:

gitcheckout -b 本地分支名xorigin/遠端分支名x1

> git checkout -b coreui-themeorigin/coreui-theme

使用該方式會在本地新建分支x,並自動切換到該本地分支x

採用此種方法建立的本地分支會和遠端分支建立對映關係。