exercism / interactive-cli-walkthrough

13 stars 26 forks source link

How does this get into the website? #3

Closed iHiD closed 6 years ago

iHiD commented 7 years ago

The html doesn’t get into prototype, yet. We could do: 1) git subtree 2) Periodic PRs 3) Make it behave the same way as website-copy.

kytrinyx commented 7 years ago

My plan was to use git subtree until we have the basic walkthrough all worked out.

Then merge it into website copy permanently and get rid of the separate repo.

The walkthrough is included in the website-copy repository as a git subtree. To bring in updates into the website-copy repo, run the command:

git subtree pull --prefix=walkthrough walkthrough master

This will include the full walkthrough contribution history in the website-copy repository. When we've finished developing the walkthrough we can archive the interactive-cli-walkthrough repository and do maintenance directly within the website-copy repository, and everyone still gets credit for their code.

kntsoriano commented 6 years ago

I think we can close this now as we've already decided on how the walkthrough gets into the website :)

As a sidenote, in order for the command @kytrinyx described above to work, I also needed to run this command:

git remote add walkthrough git@github.com:exercism/interactive-cli-walkthrough.git