-
Notifications
You must be signed in to change notification settings - Fork 124
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.git
orgit remote add sufia https://github.com/projecthydra/sufia.git
- Fetch from the new remote:
git fetch cc
orgit fetch sufia
- Start a new branch for the merge:
git checkout -b merge_cc
orgit checkout -b merge_sufia
- Merge the latest commits into your branch:
git merge cc/master
orgit 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