Skip to content

Commit f36e78f

Browse files
committed
docs: clarify difference between external contributors and Cloudflare employees
1 parent 5d90f4e commit f36e78f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Diff for: CONTRIBUTING.md

+17
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Wrangler is built and run on the Node.js JavaScript runtime.
2323

2424
### Fork and clone this repository
2525

26+
#### For External Contributors
27+
2628
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.
2729

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

62+
#### For Cloudflare Employees
63+
64+
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.
65+
66+
Clone the main repository:
67+
```sh
68+
git clone https://github.com/cloudflare/workers-sdk.git
69+
cd workers-sdk
70+
```
71+
Create new branches directly in the cloned repository and push them to the main repository:
72+
```sh
73+
git checkout -b <new-branch-name>
74+
git push origin <new-branch-name>
75+
```
76+
6077
### Install dependencies
6178

6279
**Warning**

0 commit comments

Comments
 (0)