當咱們在正常開發過程當中,常常會插進來一些bug修改,爲了避免影響在寫的代碼,須要新開一個分支做爲bug修復。git
git clone https://code.xxxapp
git remote -vcode
git branch圖片
當我想從遠程倉庫里拉取一條本地不存在的分支時:開發
git checkout -b 本地分支名 origin/遠程分支名rem
這個將會自動建立一個新的本地分支,並與指定的遠程分支關聯起來。get
git branch yml2.0it
git checkout yml2.0io
orast
git checkout -b yml2.0
將原來:
profiles: active: test
修改成:
profiles: active: prod
git status
git add .
git commit -m 'yml2.0'
git push origin yml2.0
推送成功,同時在遠程建立yml2.0分支
數據修改爲功