GitHub create pull request
Last update
2020-06-25
2020-06-25
« — »
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # fork # clone your fork # create a new branch git checkout -b <new_branch> git remote add owner https://github.com/<user>/<repo> # perform changes git add -u . git ci -m "nice message" git push -u origin <new_branch> # create a new pull request, visit: https://github.com/acavalin/<repo>/pull/new/<new_branch> |
Source: opensource.com