Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 1.71 KB

CONTRIBUTING.md

File metadata and controls

51 lines (43 loc) · 1.71 KB

Contributing

Reporting Issues

Found a problem? Want a new feature?

Remember, a bug is a demonstrable problem caused by our code.

Submitting Pull Requests

Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.

  1. To begin, fork this project, clone your fork, and add our upstream.
    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/css-selector-extract
    # Navigate to the newly cloned directory
    cd css-selector-extract
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/maoberlehner/css-selector-extract
    # Install the tools necessary for development
    npm install
  2. Create a branch for your feature or hotfix:
    # Move into a new branch for a feature
    git checkout -b feature/thing
    # Move into a new branch for a hotfix
    git checkout -b hotfix/something
  3. Push your branch up to your fork:
    # Push a feature branch
    git push origin feature/thing
    # Push a hotfix branch
    git push origin hotfix/something
  4. Now open a pull request with a clear title and description.