1
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】余計なディレクトリ/ファイルの削除と複数レポジトリの統合

Last updated at Posted at 2019-12-29

######不要なディレクトリ/ファイルの削除

#必要なディレクトリだけを残して、不要なディレクトリ/ファイルを削除する
git filter-branch -f --subdirectory-filter [残したいディレクトリ]

######レポジトリの統合

#統合したいレポジトリとそのユーザーを指定
git remote add [AnyName] git@github.com:[UserName]/[RepoName].git
git fetch [AnyName]
git merge --allow-unrelated-histories [AnyName]/[Branch]

--allow-unrelated-historiesについて

無関係なヒストリを持つ2つのブランチをマージしようとすると
fatal: refusing to merge unrelated historiesと出力されマージできません。
この問題を解決するために--allow-unrelated-historiesを指定しています。

1
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
1
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?