Skip to content

Latest commit

 

History

History
47 lines (26 loc) · 1.89 KB

README.md

File metadata and controls

47 lines (26 loc) · 1.89 KB

freeCodeCamp Ottawa

Project overview

This is a collaborative project between the members of the freeCodeCamp Ottawa meetup. We are building our very own freeCodeCamp Ottawa website for our meetup group. The website will contain information about our group, original and links to existing resources, an 'about us' section, and additional features as we go.

If this is your first foray into open source, check out this awesome resource on how to get started, and for ideas on what to contribute.

How to contribute

1. Install [Git]https://help.github.com/articles/set-up-git/ if you don't already have it

2. Fork this repository to create a copy on your account by clicking the fork button, top right of the page.

3. Clone the repository to your machine by clicking 'clone', and copying the URL into your terminal

git clone <url you just copied>

4. Enter the repo folder via your terminal

cd website

5. Create a new branch for your changes

git checkout -b <branch-name> (you can name this branch 'changes', 'edits', etc).

6. Open contributors.md in your code editor, add your name and save the changes

7. Commit the changes

Run git status to check the changes that have been made

Run git add Contributors.md to stage the file

Run git commit -m 'add <name> to file' (using your name in place of <name>)

8. Push the changes to GitHub

git push origin <your-branch-name>

9. Create a pull request for your changes

Open your repository in GitHub, and click 'compare & pull request'.

Submit the pull request! 🎉

Issues

Check out the issues to find tasks for completion or bugs to fix, as well as to suggest new features or point out bugs.

  • Please check if an issue has been assigned or claimed before starting work on it