site/wiki/README.md

34 lines
700 B
Markdown
Raw Normal View History

2018-06-04 02:18:02 +00:00
# tilde.team wiki
hi there, welcome to our wiki!
to contribute to the wiki:
* clone the repo to your local machine (or your personal folder on the tilde.team box)
```sh
2018-06-04 22:14:56 +00:00
git clone git@tilde.team:meta/site
2018-06-04 02:18:02 +00:00
```
* create a new branch for your page
```sh
git checkout -b my-new-page
```
* if you want to add a new page, copy `template.md` into your new page!
```sh
cp template.md my-new-page.md
```
* edit as needed!
* commit your changes and create a pull request :)
```sh
git add --all
git commit -m "added my-new-page"
git push origin my-new-page # this should match the branch name you created earlier
```
2018-06-04 22:14:56 +00:00
* create a pull request on the [site](https://git.tilde.team/meta/site) repo
2018-06-04 02:18:02 +00:00
thanks!~