git小技巧

當咱們在正常開發過程當中,常常會插進來一些bug修改,爲了避免影響在寫的代碼,須要新開一個分支做爲bug修復。git

clone一份最新代碼到本地

git clone https://code.xxxapp

查看remote

git remote -vcode

查看分支

git branch圖片

  • master

建立分支並拉取遠程指定分支

當我想從遠程倉庫里拉取一條本地不存在的分支時:開發

git checkout -b 本地分支名 origin/遠程分支名rem

這個將會自動建立一個新的本地分支,並與指定的遠程分支關聯起來。get

新建分支&切換分支

git branch yml2.0it

git checkout yml2.0io

orast

git checkout -b yml2.0

  • Switched to branch 'yml2.0'

修改文件

將原來:

profiles:
    active: test

修改成:

profiles:
    active: prod

查看修改狀態

git status

  • modified: src/main/resources/application.yml

提交修改

git add .

git commit -m 'yml2.0'

git push origin yml2.0

推送成功,同時在遠程建立yml2.0分支

輸入圖片說明

數據修改爲功

輸入圖片說明

相關文章
相關標籤/搜索