Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 985 Bytes

updating.md

File metadata and controls

13 lines (11 loc) · 985 Bytes

Updating

When you install Regolith, you replace the origin remote with your own repository, so you can't just git pull to merge in updates to Regolith. It's still fairly easy, though; here's how:

  1. git clone Reglith into a separate folder from your existing installtion.
  2. Open your preferred visual diff tool (e.g, DeltaWalker, Meld, Xcode's FileMerge, etc), and compare the two folders.
  3. Go through each file that has differences, and merge the changes from Regolith to your installation.
    1. In most cases, this will be pretty simple, but if you've made any customizations to those lines, then you'll need to decide how to resolve the differences.
  4. When you've finished copying the changes, test that everything still works as expected.
  5. git add -p . to review and stage the changes.
  6. git ci -m 'Merge latest Regolith.'
  7. git push
  8. bin/deploy.sh