1
0
mirror of https://github.com/namibia/tips.git synced 2025-03-16 13:12:21 +00:00
git-tips/contributing.md

23 lines
375 B
Markdown
Raw Permalink Normal View History

2015-07-15 16:40:05 +05:30
## Easy steps:
2015-07-15 16:56:39 +05:30
* 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 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>,
"tip": <your_tip>
}
```
* Commit, push and send a PR!