0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

git hubにzipfileからDLしたものを統合させたいとき

Posted at

Githubでのコミット,ローカルでのコミットでそれぞれ共通の祖先がない状態から行い、プルリク、マージできない状況になった。

通常のマージでは,共通祖先から分岐したブランチ同士をつなげる.ので通常禁じ手となるそう。

しかし--allow-unrelated-historiesをつけ,共通の祖先でないブランチ同士でもマージ作業ができるようになった。

エラー文

ローカルとリモート繋ぐためにpullしようとしたが
fatal: refusing to merge unrelated histories

となる。

ブレイクスル

git mergeコマンドに--allow-unrelated-historiesのオプションを使いして実行する.
git pull --allow-unrelated-histories origin develop(このdevelopはマージしたいもの)

大量のコンフリクトが発生した。
ローカルからpushしたたものを今回、優先したかったため

今回は、
git checkout --ours とし
コンフリクト起きたとき 現在のcheckoutが優先される コマンド使用し、解消

[今いるとこ/merging]—マージ途中で止まっている…
git checkout --ours 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?