-
Notifications
You must be signed in to change notification settings - Fork 144
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
NodeJSbeing 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.gitcd patternfly-orggit remote add upstream https://github.com/patternfly/patternfly-org.gitgit fetch upstreamgit checkout -b myNewBranch upstream/master
Run the code locally:
yarn installyarn 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!