8000 Update dev-guide.md (#692) · shiv-io/server-client-python@d1c6997 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1c6997

Browse files
author
Chris Shin
authored
Update dev-guide.md (tableau#692)
1 parent 0123139 commit d1c6997

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

docs/dev-guide.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,22 @@ add your contributions to the **development** branch.
3838
python setup.py test
3939
```
4040

41-
1. Set up the feature/fix branch (based off the `development` branch). It is
41+
1. Configure a remote that points to the source (upstream) repository:
42+
```shell
43+
git remote add upstream https://github.com/tableau/server-client-python
44+
```
45+
More information about configuring a remote for a fork can be found [here](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork).
46+
47+
1. Sync your fork:
48+
```shell
49+
git fetch upstream
50+
```
51+
52+
1. Set up the feature/fix branch (based off the source `development` branch). It is
4253
recommended to use the format issue#-type-description, for example:
4354

4455
```shell
45-
git checkout -b 13-fix-connection-bug development
56+
git checkout -b 13-fix-connection-bug upstream/development
4657
```
4758

4859
For documentation changes, see the documentation section below.

0 commit comments

Comments
 (0)
0