okfn / opendefinition

Open Definition source
https://opendefinition.org/
Creative Commons Attribution 4.0 International
109 stars 123 forks source link

Rewrite of OFD page #101

Closed Stephen-Gates closed 9 years ago

Stephen-Gates commented 9 years ago

Partially addresses #93

Stephen-Gates commented 9 years ago

@mlinksva thanks for that. Something got lost with some on the headings ### appears on the published page. Not sure what happened there - any clues on fixing?

Also bullet points at the top of the page.

mlinksva commented 9 years ago

A blank line before each bulleted list and heading was needed.

Stephen-Gates commented 9 years ago

Ok thanks @mlinksva - I've spotted some similar issues. Forgive a GItHub newbie - Do I fork the open definition repository again to get the latest OFD page to fix the errors or is there another trick? Thanks.

mlinksva commented 9 years ago

There may be a way to do it in the github UI that I'm not familiar with, but from the command line in your local repository you can do something like

git remote add upstream https://github.com/okfn/opendefinition.git
git pull upstream
git push

You only need to do the first line once, or maybe not at all -- look at the file .git/config to see if you already have the okfn repo set up as a remote, if so replace upstream with whatever the remote is called.

The second line synchronizes your local repository with this one, the third updates your personal github remote. You can then edit in your account in the github web interface. Or between the pull and push, edit and commit locally. Finally, send a pull request.