tips/contributing.md

23 lines
375 B
Markdown
Raw Normal View History

2015-07-15 13:10:05 +02:00
## Easy steps:
2015-07-15 13:26:39 +02:00
* Clone this [repo](https://github.com/git-tips/tips.git):
```sh
$ git clone https://github.com/git-tips/tips.git
```
* Install the deps:
```sh
$ cd tips && npm install
```
* Edit [tips.json](./tips.json) to add your tip in the below format:
2015-07-15 13:10:05 +02:00
2015-07-15 13:26:39 +02:00
```js
2015-07-15 13:10:05 +02:00
{
"title": <your_tip_title>,
"tip": <your_tip>
}
```
* Commit, push and send a PR!