Skip to content

Commit 696fd5a

Browse files
Update index.rst
1 parent 3dcfc65 commit 696fd5a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

doc/index.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ The following details suggested steps for making your own contributions to the p
8686

8787
8. Update & sync your local code to the upstream version on Github before submitting (especially if it has been awhile)::
8888

89-
git checkout master; git fetch --all; git merge upstream/master; git push
89+
git checkout master; git fetch --all; git merge upstream/master
90+
git push
9091

9192
and then bring those changes into your branch::
9293

@@ -95,6 +96,10 @@ The following details suggested steps for making your own contributions to the p
9596
9. Push your branch to GitHub::
9697

9798
git push origin <my-new-branch-name>
99+
100+
(The first time you run this command you will need to use the following)::
101+
102+
git push --set-upstream origin <my-new-branch-name>
98103

99104
10. Issue pull request to submit your code modifications to Github by going to your fork on Github, clicking Pull Request, and entering a description.
100105
11. Repeat steps 5--9 until feature is complete

0 commit comments

Comments
 (0)