mirror of
https://github.com/namibia/tips.git
synced 2024-11-12 08:16:30 +00:00
21 lines
360 B
Markdown
21 lines
360 B
Markdown
## Easy steps:
|
|
|
|
* [Fork](https://github.com/git-tips/tips/network) the repo.
|
|
|
|
* Install the deps:
|
|
```sh
|
|
$ cd tips && npm install
|
|
```
|
|
|
|
* Edit [tips.json](./tips.json) to add your tip in the below format:
|
|
|
|
```js
|
|
{
|
|
"title": <your_tip_title>,
|
|
"tip": <your_tip>,
|
|
"alternatives": [Optional list of alternatives]
|
|
}
|
|
```
|
|
|
|
* Commit, push and send a PR!
|