Update CONTRIBUTING.md

This commit is contained in:
Eric Olkowski 2022-01-22 11:29:25 -05:00 committed by GitHub
parent 4ef78b034c
commit f50e1e6216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 45 additions and 19 deletions

View File

@ -2,7 +2,7 @@
Thank you for expressing interest in contributing to our CSS exercises! Please be sure to read this guide thoroughly before contributing, as it will lessen the chances of any issues arising during the process.
Please do not contribute your solutions to any exercises in this repo. Your PR will be immediately closed without being merged. The exercises are for you to do and keep on your own local machine or your personal repo.
**Please do not open a pull request (PR) with your solutions to any exercises in this repo**. Your PR will be immediately closed without being merged. The exercises are for you to do and keep on your own local machine or your personal GitHub.
## How to Contribute
@ -12,60 +12,86 @@ If you would like to work on an existing issue in the repo:
1) Find an issue that is not currently assigned to anyone
* A couple of good places to start are ["help wanted" issues](https://github.com/TheOdinProject/css-exercises/labels/Help%20Wanted) or ["good first issue" issues](https://github.com/TheOdinProject/css-exercises/labels/good%20first%20issue)
2) Ask to be assigned the issue by a maintainer
* **If you are not a maintainer, do not give others permission to work on an issue**
3) **Wait to be assigned the issue before working on anything**
3) **Wait to be assigned the issue before starting any work**
4) After being assigned, address each item listed in the acceptance criteria
* If there are no acceptance criteria stated in the issue, ask the maintainer that assigned you the issue if any exist
If you would like to propose a small change (fixing a typo, updating a link, etc.) that is not part of an existing issue, you are welcome to make the change and submit a pull request (PR) without an official issue.
If you would like to propose a small change (fixing a typo, updating a link, etc.) that is not part of an existing issue, you are welcome to make the change and submit a PR without an official issue.
### Creating an Issue
If you would like to propose a more significant change:
1. Go through the open issues and make sure an issue doesn't already exist
* If the issue already exists, but there are details you've come across missing, leave a comment on the already opened issue
2. If the issue doesn't already exist, create a new one and **read and fill out the issue template in its entirety**
* If the issue already exists, but there are details you feel are missing, leave a comment on the already opened issue
### Working on an Issue
2. If the issue doesn't already exist, create a new one and **read the issue template in its entirety and fill out all applicable sections**
Before you begin to work on an issue, be sure to follow these steps:
### Setting Up Your Local Clone
1. Fork and then clone this repo to your local machine, replacing the `<your username>` text with your actual GitHub username:
Before you begin working on anything, be sure you follow these steps in order to set up a clone on your local machine:
1. Fork this repo to your own GitHub account. If you don't know how to do so, follow the GitHub documentation on how to [fork a repo](https://docs.github.com/en/get-started/quickstart/fork-a-repo)
2. Clone this repo to your local machine with one of the following commands, replacing the `<your username>` text with your actual GitHub username:
```bash
# If you have ssh set up with Git
# If you have SSH set up with Git
git clone git@github.com:<your username>/css-exercises.git
# Otherwise for HTTPS
git clone https://github.com/<your username>/css-exercises.git
```
2. From the directory of your local clone, set the upstream remote so you can keep your copy of the app synced with the original:
3. `cd` into the directory of your local clone, then set the upstream remote so you can keep your local clone synced with TOP's original repo:
```bash
# If you have ssh set up with Git
# If you have SSH set up with Git
git remote add upstream git@github.com:TheOdinProject/css-exercises.git
# Otherwise for HTTPS
git remote add upstream https://github.com/TheOdinProject/css-exercises.git
```
3. Create a new branch:
### Working on an Issue
Once you have the repo forked and cloned, and the upstream remote has been set, you can begin working on your issue:
1. Create a new branch, replacing the `<your branch name>` with an actual branch name, e.g. "flex_exercises":
```bash
$ git checkout -b my-branch
git checkout -b <your branch name>
```
4. Add commits as you work on the issue at hand with `git commit`
2. Add commits as you work on your issue, replacing the `<your commit message>` text with your actual commit message:
```bash
git commit -m "<your commit message>"
```
5. Sync your work with the remote upstream between commits. Follow the [ongoing workflow](https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-programming/lessons/using-git-in-the-real-world#ongoing-workflow) section in our Using Git in the Real World lesson.
3. Sync your work with the upstream remote every so often. Follow the [ongoing workflow](https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-programming/lessons/using-git-in-the-real-world#ongoing-workflow) section in our Using Git in the Real World lesson.
6. Push your branch to your forked repo:
4. Push your branch to your forked repo, replacing the `<your branch name>` with the branch you've been working on locally:
```bash
$ git push origin my-branch
$ git push origin <your branch name>
```
### Opening a Pull Request
1) Go to your fork on Github after you have pushed up your branch and look for a button that asks you to open a pull request
2) **Read the PR template in its entirety and fill out all applicable sections**
1. After pushing your changes, go to your forked repo on GitHub and click the "Compare & pull request" button
* If you don't see this button, you can click the branch dropdown menu and then select the branch you just pushed from your local clone:
![GitHub branch dropdown menu](https://user-images.githubusercontent.com/70952936/150646139-bc080c64-db57-4776-8db1-6525b7b47be2.jpg)
* Once you have switched to the correct branch on GitHub, click the "Contribute" dropdown and then click the "Open pull request" button
2. **Read the PR template in its entirety and fill out all applicable sections** before submitting your PR
3. At this point a maintainer will either leave general comments, request changes, or approve and merge your PR
* It is important to respond to any comments or requested changes in a timely manner, otherwise your PR may be closed without being merged due to inactivity
* After pushing any requested changes to the branch you opened the PR with, be sure to re-request a review from the maintainer that requested those changes at the top of the right sidebar:
![Reviewers section of GitHub's sidebar](https://user-images.githubusercontent.com/70952936/150647064-4fdd59d1-82a4-4f18-894d-0e43a5ee0ffb.jpg)
## Need Further Help?
Please let us know if you require any help doing any of the steps in this guide in our Discord's [contribution-suggestions channel](https://discordapp.com/channels/505093832157691914/540903304046182425).