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