Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1012 Bytes

CONTRIBUTING.md

File metadata and controls

46 lines (31 loc) · 1012 Bytes

Contributing to Into the Book

Local Development

Setup

  1. Clone this repository:
git clone https://github.com/ShaunSHamilton/into-the-book.git
  1. Open in VSCode:
cd into-the-book
code .
  1. Open the command palette (Ctrl+Shift+P) and run the command Dev Containers: Rebuild Container and Reopen in Container.

  2. Once finished, open the command palette again, and run freeCodeCamp: Develop Course.

Repo Practices

Commits

Commit messages should use the following format:

<type>(<ver>): <message>
  • type is one of the following:
    • feat for new features
    • fix for bug fixes
    • docs for documentation changes
    • style for code style changes
    • refactor for code refactoring
    • chore for other changes
  • ver is the version number of the curriculum
  • message is a short description of the change

Pull Requests

Pull requests should be made against the main branch. The title should match the commit message format.