git如何進行程式碼的合併和衝突的解決

heicai-aony發表於2019-03-12
### 1.下載指定分支
git clone -b dev_chenlekang https:xxxx
### 2.下載develop分支到本地
git checkout develop
git pull
### 3.切換回自己的dev_chenlekang,並且合併develop
git checkout dev_chenlekang
git merge develop
### 4.將合併develop的分支提交到自己的remote分支
git pull
### 5.如果有衝突,檢視並且解決
git status
git add xxxx.flie

 

相關文章