Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.99 KB

CONTRIBUTING.md

File metadata and controls

50 lines (31 loc) · 1.99 KB

How to contribute

Please note we have a code of conduct, please follow it in all your interactions with the repo.

Contributing procedure

Submit an issue

  • Create a new issue
  • Comment on the issue (if you'd like to be assigned to it) - that way the issue can be assigned to you.

Fork the repository

  • If you're not sure, here's how to fork the repo
  • Clone your fork

If this is your first time forking our repo, this is all you need to do for this step:

$ git clone git@github.com:[your_github_handle]/SpaceYaTech-sessions.git && cd SpaceYaTech-sessions

If you've already forked the repo, you'll want to ensure your fork is configured and that it's up to date. This will save you the headache of potential merge conflicts.

Make your changes!

  1. Create new branch for your changes
$ git checkout -b new_branch_name
  1. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see how to link a commit message to an issue using a keyword.
$ git commit -m "brief description of changes [Fixes #1234]"
  1. Push to your GitHub account
$ git push

Submit your PR

  • After your changes are commited to your GitHub fork, submit a pull request (PR) to the main branch of the SpaceyaTechKe/SpaceYaTech-sessions repo
  • In your PR description, reference the issue it resolves (see linking a pull request to an issue using a keyword)
    • ex. Updates out of date content [Fixes #1234]