Skip to content

Commit

Permalink
docs: clarify difference between external contributors and Cloudflare…
Browse files Browse the repository at this point in the history
… employees (#7660)

* docs: clarify difference between external contributors and Cloudflare employees

* chore: update wording on write access

* chore: run prettier
  • Loading branch information
andyjessop authored Jan 8, 2025
1 parent e771fe9 commit 17c2cdd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Wrangler is built and run on the Node.js JavaScript runtime.

### Fork and clone this repository

#### For External Contributors

Any contributions you make will be via [Pull Requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) on [GitHub](https://github.com/) developed in a local git repository and pushed to your own fork of the repository.

- Ensure you have [created an account](https://docs.github.com/en/get-started/onboarding/getting-started-with-your-github-account) on GitHub.
Expand Down Expand Up @@ -57,6 +59,26 @@ Any contributions you make will be via [Pull Requests](https://docs.github.com/e
Already up to date.
```

#### For Cloudflare Employees

If you are a Cloudflare employee, you do not need to fork the repository - instead, you can clone the main repository directly. This allows you to push branches directly to the upstream repository.

If you find that you don't have write access, please reach out to your manager or the Wrangler team internally.

Clone the main repository:

```sh
git clone https://github.com/cloudflare/workers-sdk.git
cd workers-sdk
```

Create new branches directly in the cloned repository and push them to the main repository:

```sh
git checkout -b <new-branch-name>
git push origin <new-branch-name>
```

### Install dependencies

**Warning**
Expand Down

0 comments on commit 17c2cdd

Please sign in to comment.