File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ The following details suggested steps for making your own contributions to the p
8686
87878. 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
95969. 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
9910410. Issue pull request to submit your code modifications to Github by going to your fork on Github, clicking Pull Request, and entering a description.
10010511. Repeat steps 5--9 until feature is complete
You can’t perform that action at this time.
0 commit comments