Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.2 KB

CONTRIBUTING.md

File metadata and controls

24 lines (17 loc) · 1.2 KB

Contributing

Create a branch

  1. git checkout master from any folder in your local https://github.com/Rajdeepc/vue-node-boilerplate.git repository
  2. git pull origin master to ensure you have the latest main code
  3. git checkout -b the-name-of-my-branch (replacing the-name-of-my-branch with a suitable name) to create a branch

Make the change

  1. Follow the "Running locally" instructions
  2. Save the files and check in the browser
  3. Changes to React components in src will hot-reload
  4. Changes to markdown files in content will hot-reload
  5. If working with plugins, you may need to remove the .cache directory and restart the server

Push it

  1. git add -A && git commit -m "My message" (replacing My message with a commit message, such as Fixed header logo) to stage and commit your changes
  2. git push my-fork-name the-name-of-my-branch
  3. Go to the Vue-Node-Boilerplate and you should see recently pushed branches.
  4. Follow GitHub's instructions.
  5. If possible, include screenshots of visual changes. A Netlify build will also be automatically created once you make your PR so other people can see your change.