-
Notifications
You must be signed in to change notification settings - Fork 2
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.
- Open the Glitch CoffeeTime app's console
- 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
- Now fetch from your remote
git fetch REMOTE_NAME
- Now merge your remote
git merge REMOTE_NAME/master
- Now test and make sure everything's working!
- Once you're satisfied, clean up your remote if you're not planning to use it again:
git remote rm REMOTE_NAME