-
Notifications
You must be signed in to change notification settings - Fork 137
Home
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:
- git
- NodeJS
-
Yarn (this depends on
NodeJS
being installed first) - Visual Studio Code
Then fork and clone down the repo:
- Click fork button in the top-right of https://github.com/patternfly/patternfly-org/
git clone https://github.com/YOUR-USERNAME/patternfly-org.git
cd patternfly-org
git remote add upstream https://github.com/patternfly/patternfly-org.git
git fetch upstream
git checkout -b myNewBranch upstream/master
Run the code locally:
yarn install
yarn start
To make content changes, edit Markdown files using a text editor, like Visual Studio Code. Once done, commit them:
git add .
git commit -m "What I'm changing"
git push origin
- Open a PR using the link Github sends you!