Skip to content
zallen edited this page Mar 31, 2020 · 7 revisions

Welcome to the patternfly-org wiki! This is a guide on how to get started with no prior git or npm experience.

Things to install:

  1. git
  2. NodeJS
  3. Yarn (this depends on NodeJS being installed first)
  4. Visual Studio Code

Then fork and clone down the repo:

  1. Click fork button in the top-right of https://github.com/patternfly/patternfly-org/
  2. git clone https://github.com/YOUR-USERNAME/patternfly-org.git
  3. cd patternfly-org
  4. git remote add upstream https://github.com/patternfly/patternfly-org.git
  5. git fetch upstream
  6. git checkout -b myNewBranch upstream/master

Run the code locally:

  1. yarn install
  2. yarn start

To make content changes, edit Markdown files using a text editor, like Visual Studio Code. Once done, commit them:

  1. git add .
  2. git commit -m "What I'm changing"
  3. git push origin
  4. Open a PR using the link Github sends you!