Skip to content

Contributing to the FEMU Wiki

Huaicheng Li edited this page Jan 12, 2021 · 3 revisions

Github doesn't support pull request to the Wiki. Here is a workaround if you're interested in contributing to the FEMU Wiki.

  1. Clone FEMU Wiki locally:
git clone https://github.com/ucare-uchicago/FEMU.wiki.git
  1. Create a repo named "FEMU.wiki" under your own Github account, and then associate it with the above cloned wiki. (The following steps assume your new "FEMU.wiki" repo link is: https://github.com/yourGithubUserName/FEMU.wiki)
git remote -v  # Output should look like below
               # origin  https://github.com/ucare-uchicago/FEMU.wiki.git (fetch)
               # origin  https://github.com/ucare-uchicago/FEMU.wiki.git (push)
git remote add gh https://github.com/yourGithubUserName/FEMU.wiki # remember to replace "yourGithubUserName"
git remote -v  # now output will look like this
               # gh      https://github.com/yourGithubUserName/FEMU.wiki (fetch)
               # gh      https://github.com/yourGithubUserName/FEMU.wiki (push)
               # origin  https://github.com/ucare-uchicago/FEMU.wiki.git (fetch)
               # origin  https://github.com/ucare-uchicago/FEMU.wiki.git (push)
  1. Update the wiki in your local repo, and push changes to your own "FEMU.wiki" repo
# make changes to the .md document files
git commit -m "Add your commit msgs"
git push gh
  1. Reply the FEMU Wiki issue (https://github.com/ucare-uchicago/FEMU/issues/44) with the link to your "FEMU.wiki", and I will take a look and merge it to the main FEMU Wiki.

Thanks!

Contents

Clone this wiki locally