Git的使用(二)提交以及分支的創建與合併

1. 提交:首先,轉到昨天創建的倉庫文件夾裏,而後咱們建立一個gitCommit.txt文件,選擇編輯文件,輸入New File!2019/7/10 20:44(隨便輸入什麼,我這個隨便打的)。而後在GitBash裏面,輸入如下命令。回車以後,文件就已經上傳至倉庫了。git

$ git add gitCommit.txt
$ git commit -m '新文件的提交'

2. 分支的建立:咱們輸入如下命令,這樣咱們就建立了一個分支dev。code

$ git branch dev

接着執行如下命令查看全部的分支,回車以後會顯示全部的分支。it

$ git branch

而後執行如下命令切換到分支devast

$ git checkout dev

3. 分支的合併:分支的合併語句很是簡單,首先將分支切換到master,而後執行如下命令。文件

$ git merge master
Auto-merging gitCommit.txt
CONFLICT (content): Merge conflict in gitCommit.txt
Automatic merge failed; fix conflicts and then commit the result.

    這個時候,GitBash會提示出現衝突(我乾的),而後看一下gitCommit.txt文件co

New File! 2019/7/10 20:41
<<<<<<< HEAD
Branch Dev: New File! 2019/7/10 20:56
=======
Master: New File! 2019/7/10 20:57
>>>>>>> master

咱們只須要刪去<<<<<<<<<代碼段A=========代碼段B>>>>>>>>>>>>>咱們只須要解決這中間的代碼衝突就完事兒了。上傳

接着執行如下命令。衝突解決!commit

$ git add gitCommit.txt
$ git commit -m 'OK'
相關文章
相關標籤/搜索