Login with Google
Questions
Unanswered
Tags
Users
Ask a Question
Welcome to the
CSC Q&A
, on our server named in honor of
Ada Lovelace
. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.
Categories
All categories
CSC305
(606)
CSC 305 Fall 2024
(53)
CSC305 Fall 2023
(181)
CSC305 Fall 2022
(168)
CSC305 Fall 2019
(94)
CSC305 Fall 2020
(28)
CSC305 Fall 2021
(82)
CSC380Jan2024
(55)
CSC335 Fall 2022
(67)
CSC150
(114)
CSC201
(229)
CSC202
(2)
CSC215
(27)
CSC285
(142)
CSC310
(0)
CSC320
(72)
CSC330
(4)
CSC335
(106)
CSC350
(19)
CSC371
(16)
CSC490
(185)
DATA360
(62)
Other
(5)
old_CSC201
(39)
old_CSC211
(268)
old_CSC212
(22)
Pull request steps using git
+8
votes
Create/Log in to your GitHub account
Go to the page for the code respository you want to contribute to (the “upstream”)
“Fork” the repository (this creates a clone to your GitHub account)
Create a local clone of your fork with git clone
Create a local branch for your changes
Make your changes and commit them to your local branch with git commit, ensuring to include a descriptive commit message
Push the branch to your GitHub fork using git push
Go to the page for the upstream repository go to the pull requests tab
Click the “New Pull Request” Button
Select the branch you want to submit, and write a summary of what your change explaining what it is intended to do and how it is implemented
asked
Nov 14, 2021
in
CSC305 Fall 2021
by
Alvaro Martin Grande
(
1
point)
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1
Answer
+1
vote
Create/Log in to your GitHub account
Go to the page for the code respository you want to contribute to (the “upstream”)
“Fork” the repository (this creates a clone to your GitHub account)
Create a local clone of your fork with git clone
Create a local branch for your changes
Make your changes and commit them to your local branch with git commit, ensuring to include a descriptive commit message
Push the branch to your GitHub fork using git push
Go to the page for the upstream repository go to the pull requests tab
Click the “New Pull Request” Button
Select the branch you want to submit, and write a summary of what your change explaining what it is intended to do and how it is implemented
answered
Nov 14, 2021
by
Alvaro Martin Grande
(
1
point)
Please
log in
or
register
to add a comment.
...