Skip to content

WIP: Merge rspec expectations

gitlab-qa-bot requested to merge github/fork/p8/merge-rspec-expectations into master

Created by: p8

Proof of concept for merging the other repos into this repo while keeping all history I had some success with the steps described here (https://thoughts.t37.net/merging-2-different-git-repositories-without-losing-your-history-de7a06bba804

git clone git@github.com:rspec/rspec-core.git
git clone git@github.com:rspec/rspec-expectations.git
cd rspec-core
git remote add rspec-expectations ../rspec-expectations
git fetch rspec-expectations
git co -b merge-rspec-expectations
git merge -S --allow-unrelated-histories rspec-expectations/master

See: https://github.com/rspec/rspec-core/issues/2509

Merge request reports