Skip to content

Deploying to Glitch's CoffeeTime

vrk edited this page Sep 11, 2019 · 1 revision

When your remix is ready to be merged into CoffeeTime proper, the easiest way to do this is via git fetch and git merge.

  1. Open the Glitch CoffeeTime app's console
  2. Add your remix as a remote using the following command (with the indiciated parts changed accordingly):
git remote add REMOTE_NAME https://api.glitch.com/YOUR_REMIX_NAME/git
  1. Now fetch from your remote
git fetch REMOTE_NAME
  1. Now merge your remote
git merge REMOTE_NAME/master
  1. Now test and make sure everything's working!
  2. Once you're satisfied, clean up your remote if you're not planning to use it again:
git remote rm REMOTE_NAME
Clone this wiki locally