Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update contributing guide by adding upstream remote #1509

Merged
merged 8 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,28 @@ for example:
git clone [email protected]:YOUR-USERNAME/narwhals.git
```

### 3. Add the `upstream` remote
reshamas marked this conversation as resolved.
Show resolved Hide resolved
reshamas marked this conversation as resolved.
Show resolved Hide resolved

```bash
git remote add upstream [email protected]:narwhals-dev/narwhals.git
reshamas marked this conversation as resolved.
Show resolved Hide resolved
```

Check to see the remote has been added:

```bash
git remote -v
```

for example:
reshamas marked this conversation as resolved.
Show resolved Hide resolved
```bash
git remote -v
origin [email protected]:ghusername/narwhals.git (fetch)
reshamas marked this conversation as resolved.
Show resolved Hide resolved
origin [email protected]:ghusername/narwhals.git (push)
upstream https://github.com/narwhals-dev/narwhals.git (fetch)
upstream https://github.com/narwhals-dev/narwhals.git (push)
reshamas marked this conversation as resolved.
Show resolved Hide resolved
```

where `ghusername` will be your GitHub user name.

### 4. Setting up your environment

Expand Down
Loading