mirror of
https://github.com/namibia/tips.git
synced 2024-12-23 10:38:58 +00:00
23 lines
375 B
Markdown
23 lines
375 B
Markdown
## Easy steps:
|
|
|
|
* 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:
|
|
|
|
```js
|
|
{
|
|
"title": <your_tip_title>,
|
|
"tip": <your_tip>
|
|
}
|
|
```
|
|
|
|
* Commit, push and send a PR!
|