中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Git沖突中git checkout高級用法是什么

發布時間:2021-12-06 16:49:41 來源:億速云 閱讀:350 作者:柒染 欄目:大數據

Git沖突中git checkout高級用法是什么,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

 

背景

Git沖突的原因,一般是修改了同一個文件導致的,這個文件有可能是別人提交到遠程倉庫里面,還有就是需要合并這個文件導致的。

 

解決方法

  1. 你確定你需要的是哪個倉庫的文件

git checkout --theirs conflicted_file.txt  # 保留遠端的
git checkout --ours conflicted_file.txt # 保留本地的
 
  1. 然后執行add和commit

git add -A
git commit -m "update conflict
   

舉個栗子

獲取遠端服務器上的文件,提示沖突了需要合并

# git cherry-pick FETCH_HEAD
* branch            refs/changes/85/12385/3 -> FETCH_HEAD
error: 'cherry-pick' is not possible because you have unmerged files.
hint: Fix them up in the work tree,
hint: and then use 'git add/rm <file>' as
hint: appropriate to mark resolution and make a commit,
hint: or use 'git commit -a'.
fatal: cherry-pick failed
 

查看當前倉庫的狀態

# git status
Not currently on any branch.
You are currently cherry-picking commit 53e5374.
  (fix conflicts and run "git cherry-pick --continue")
  (use "git cherry-pick --abort" to cancel the cherry-pick operation)

Unmerged paths:
  (use "git add <file>..." to mark resolution)
     both modified: file1.txt
 

用提示的命令執行

# git cherry-pick --continue

U   file1.txt

error: 'commit' is not possible because you have unmerged files.
hint: Fix them up in the work tree,
hint: and then use 'git add/rm <file>' as
hint: appropriate to mark resolution and make a commit,
hint: or use 'git commit -a'.
fatal: Exiting because of an unresolved conflict.
 

提示file1.txt有更新,確定替換為遠程倉庫的文件。這里用theirs

git checkout --theirs file1.txt
 

然后添加到本地倉庫

git add -A
 

最后繼續cherry-pick「復制」

# git cherry-pick --continue
[detached HEAD 8f26ce8] Summary : test git checkout --theirs
 Author: Rik
 2 files changed, 0 insertions(+), 0 deletions(-)
   

小結

git ckeckout 和 帶參數的--ours和 --theirs還是有區別的。

    

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節
推薦閱讀:
  1. git命令
  2. git沖突怎么辦

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

git
AI

嘉黎县| 左贡县| 焉耆| 福鼎市| 潜江市| 颍上县| 高碑店市| 房产| 绍兴县| 收藏| 平邑县| 和田县| 莆田市| 同仁县| 建湖县| 平远县| 望谟县| 阿城市| 龙口市| 昔阳县| 灯塔市| 北安市| 建昌县| 土默特左旗| 甘泉县| 宝兴县| 大英县| 高青县| 巨鹿县| 金秀| 北海市| 龙门县| 仙桃市| 射阳县| 元江| 灵山县| 四平市| 曲松县| 常山县| 贵德县| 托克托县|