Skip to content

Latest commit

 

History

History
97 lines (61 loc) · 7.46 KB

File metadata and controls

97 lines (61 loc) · 7.46 KB

Welcome to the Git Connected contributing guide

Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the README ✨.

This project follows the all-contributors specification. Contributions of any kind are welcome!

Read our Code of Conduct to keep our community approachable and respectable.

In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.

Use the table of contents icon on the top left corner of this document to get to a specific section of this guide quickly.

New contributor guide

To get an overview of the project, read the README. Here are some resources to help you get started with open source contributions:

Getting started

Check to see what types of contributions we accept before making changes. Some of them don't even require writing a single line of code ✨.

📣 Discussions

Discussions are where we have conversations.

If you'd like help troubleshooting a PR you're working on, have a great new idea, or want to share something amazing you've learned in our project, join us in discussions.

🐞 Issues

Issues are used to track tasks that contributors can help with. If an issue has a triage label, we haven't reviewed it yet and you shouldn't begin work on it.

Create a new issue

If you've found something in the docs or the web app that should be updated, search open issues to see if someone else has reported the same thing. If it's something new, open an issue using a template. We'll use the issue to have a conversation about the problem you want to fix or project you want to work on.

Solve an issue

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. View the labels for more information. If you're interested in working on an issue - post a comment and tag @wil-gerard for the assignment.

✏️ Make Changes Locally

  1. We recommend using VS Code as an editor with the Tailwind IntelliSense Twin Extension which supports twin.macro.

  2. Fork the repository or create a new branch.

  3. See the installation and setup guide.

  4. Create a working branch referencing issue # and title you're working on. Example: 155-contribution-guide

  5. Start editing code!

📜 Commit your update

We follow the specifications for Convential Commits. A quick helpful overview:

  • The commit structure must include a type and a brief description followed by an optional body message with details. Tip: to make a git commit with a subject and body git commit -m "this is the subject" -m "this is the body"
  • Reference issues and pull requests liberally
  • Use the present tense ("Add feature" not "Added feature")
  • Use the imperative mood ("Move cursor to..." not "Moves cursor to...")

Commit sample:

refactor(Navbar.tsx): logout redirect (#132)

use navigate function to return to / route

🛠️ Pull requests

A pull request is a way to suggest changes in our repository. When we merge those changes, they should be deployed to the live site within 24 hours.

When you're finished with the changes, create a pull request, also known as a PR.

  • Fill the "Ready for review" template so that we can review your PR. This template helps reviewers understand your changes as well as the purpose of your pull request.
  • Don't forget to link PR to issue if you are solving one.
  • Enable the checkbox to allow maintainer edits so the branch can be updated for a merge.
  • Request @wil-gerard to review Once you submit your PR, a team member will review your proposal. We may ask questions or request for additional information.
  • We may ask for changes to be made before a PR can be merged, either using suggested changes or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch.
  • As you update your PR and apply changes, mark each conversation as resolved.
  • If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.

🎉 Your PR is merged!

Congratulations 🎉🎉 the Git Connected team thanks you ✨.

Once your PR is merged, your contributions will be publicly visible on the README docs.