Skip to content

Commit

Permalink
chore(docs): Update CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
iamclaytonray authored and Nilan Marktanner committed Feb 13, 2018
1 parent 800f2e7 commit 0d13afd
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,40 @@ Here are further contribution instructions:
* [examples](./examples/CONTRIBUTING.md)
* [server](./server/CONTRIBUTING.md)

## Logistics

**Clone your fork.**

SSH:
```sh
git clone git@github.com:YOUR_USERNAME/prisma.git
```

HTTPS:
```sh
git clone https://github.com/YOUR_USERNAME/prisma.git
```

**Add the remote upstream**

```sh
git remote add upstream git://github.com/graphcool/prisma.git
```

**Fetch changes from upstream**

```sh
git fetch upstream # fetch is essentially the same as `pull` but also does a merge
```

**Pull changes locally**

```sh
git pull upstream master
```

**Push changes up**

```sh
git push
```

0 comments on commit 0d13afd

Please sign in to comment.