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