-
Notifications
You must be signed in to change notification settings - Fork 133
Pulling code from CC and Sufia into Hyrax
Michael J. Giarlo edited this page May 11, 2017
·
7 revisions
These are the steps for merging commits from Sufia and CurationConcerns into Hyrax.
Step 1 only needs to be done once.
- Add Sufia (or CurationConcerns) as a remote to your local Hyrax repo:
git remote add cc https://github.com/projecthydra/curation_concerns.gitorgit remote add sufia https://github.com/projecthydra/sufia.git - Fetch from the new remote:
git fetch ccorgit fetch sufia - Start a new branch for the merge:
git checkout -b merge_ccorgit checkout -b merge_sufia - Merge the latest commits into your branch:
git merge cc/masterorgit merge sufia/master - Resolve any conflicts, keeping an eye out for references to CC or Sufia in the code or file paths, which you should change to Hyrax
- Run the specs:
rspec - Create a PR