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

Contributing code via pull requests #1804

Merged
merged 18 commits into from
Oct 6, 2021
Prev Previous commit
Next Next commit
checking key syntax
  • Loading branch information
roshnaeem committed Oct 1, 2021
commit 7c2c203aae53b8b73db3c1372241b7f55ceaabee
48 changes: 26 additions & 22 deletions doc/source/contributing/contributing_prs.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,31 +83,35 @@ Section in construction

2. Clone your fork of the ArviZ repo from your GitHub account to your local disk.

````{tabbed} SSH
```
$ git clone git@github.com:<your GitHub handle>/arviz.git
```
````
````{tabbed} HTTPS
```
$ git clone https://github.com/<your GitHub handle>/arviz.git
```
````
````{tabbed} SSH
:sync: ssh
```
$ git clone git@github.com:<your GitHub handle>/arviz.git
```
````
````{tabbed} HTTPS
:sync: https
```
$ git clone https://github.com/<your GitHub handle>/arviz.git
```
````

3. Navigate to your arviz directory and add the base repository as a remote:

````{tabbed} SSH
```
$ cd arviz
$ git remote add upstream git@github.com:arviz-devs/arviz.git
```
````
````{tabbed} HTTPS
```
$ cd arviz
$ git remote add upstream https://github.com/arviz-devs/arviz
```
````
````{tabbed} SSH
:sync: ssh
```
$ cd arviz
$ git remote add upstream git@github.com:arviz-devs/arviz.git
```
````
````{tabbed} HTTPS
:sync: https
```
$ cd arviz
$ git remote add upstream https://github.com/arviz-devs/arviz
```
````

4. Create a ``feature`` branch to hold your development changes:

Expand Down