Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clone instructions #3514

Merged
merged 2 commits into from
Jan 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions docs/docs/gatsby-style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@ two ways:
If you prefer to write locally before submitting a PR, then follow these steps:

1. Fork this repository
2. Copy it to your local machine by running the command `git clone`
`https://github.com/YOUR-GITHUB-USERNAME/guides.git`
3. Add a remote upstream so git knows where the official Gatsby Guides
2. Copy your fork to your local machine.
3. Add a remote upstream so git knows where the official Gatsby
repository is located by running the command `git remote add upstream`
_incomplete code here_
4. Create a new branch for your work with the command `git checkout -b NEW-BRANCH-NAME`. Try to name your branch in a way that describes your
Expand All @@ -88,10 +87,9 @@ Finally, if you want to run a version of the guides repository locally, follow
these steps:

1. Ensure you have the yarn package manager installed `npm install -g yarn`
2. Fork this repository 👇 `git clone https://github.com/YOUR-GITHUB-USERNAME/guides.git` `cd guides` `yarn install` `yarn run dev`

In this project we are using `yarn` because
[`Netlify`](https://www.netlify.com/) builds our site with `yarn`.
2. Install the Gatsby cli `yarn add --global gatsby-cli`
3. Follow the steps above to fork and clone the Gatsby repo.
4. Enter the `www` directory where gatsbyjs.org is and install its dependencies `yarn install` then run `gatsby develop`.

## Article style guide

Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-netlify-cms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-netlify-cms",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Gatsby plugin which generates the Netlify CMS single page app",
"main": "index.js",
"author": "Shawn Erquhart <shawn@erquh.art>",
Expand Down