How do I create and/or send a pull request to another repository hosted on GitHub?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To learn how to make a pull request I just followed two separate help pages on Github (linked below as bullet points). The following command line commands are for Part 1. Part 2, the actual pull request, is done entirely on Github’s website.
Part 1: fork someone’s repo: https://help.github.com/articles/fork-a-repo
git clone->cd dwolla-php->git remote->git fetchsequence above to clone your fork somewhere in your computer (i.e., “copy/paste” it to, in this case:third_party TimPeterson$) and sync it with the master repo (Dwolla/dwolla-php)git add->git commit->git pushsequence above to push your changes to the remote repo, i.e., your fork on Github (tim-peterson/dwolla-php)Part 2: make pull-request: https://help.github.com/articles/using-pull-requests