Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.33 KB

File metadata and controls

33 lines (22 loc) · 1.33 KB

systems_management

Temporary spot for this info

To minimise the impact of any unforeseen changes with upstream[s] on the work being done by Meshbits, we're trying to maintain a fork. I acknowledge that it's not the best strategy but we're doing it for now.

Currently KomodoPlatform features are being developed in a fairly decentral way which is good. But one of the side-effects have been that features are a bit all over the place.

We initially tried automating it but because of the conflicts between changes being introduced by both upstream, we're using the manual approach.

git clone git@github.com:Meshbits/komodo.git
cd komodo

git remote add jl777 git@github.com:jl777/komodo.git
git remote add komodoplatform git@github.com:KomodoPlatform/komodo.git

# Merge changes from jl777
git fetch jl777 dev
git merge jl777/dev

# Merge changes from komodoplatform
git fetch komodoplatform master
git merge komodoplatform/master

# Scenario: During merge conflict, grab FILENAME[s] from a different origin
git checkout komodoplatform/master FILENAME[s]