Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Contributing to the IFTTT wiki

Jared Rewerts edited this page Mar 20, 2019 · 1 revision

Unfortunately, GitHub doesn't make it easy to collaborate on project wikis. That being said, it is still possible to get your work merged into this wiki.

  1. Manually create a fork of the IFTTT wiki on your Github account:
  • Create a new repository on your github account. Let's call it "IFTTT-Wiki".
  • Clone the Edmonton-IFTTT wiki repo to your local machine somewhere:

git clone https://github.com/CityofEdmonton/IFTTT-Edmonton.wiki

  • Remove the original "origin" remote and add your github repo as new "origin"

git remote rm origin

git remote add origin https://github.com/<YOUR_USERNAME>/IFTTT-Wiki.git

  1. Make your proposed changes locally, then push them to your github account:

git push -u origin master ('-u origin master' only required the first time; afterwards just do git push)

  1. Submit a ticket to the official IFTTT-Edmonton issue tracker requesting me to review your changes and merge them in. Please be sure to include a link to your repo and describe what you've changed.
Clone this wiki locally