MostlyAdequate / mostly-adequate-guide

Mostly adequate guide to FP (in javascript)
Other
23.39k stars 1.86k forks source link

Can't push local branch to origin #610

Closed jacobpmeyer closed 3 years ago

jacobpmeyer commented 3 years ago

Tried to push a local branch that addresses Issue #609 so that I could open a pull request, but was met with a permission error/denial.

KtorZ commented 3 years ago

That is normal. The standard way of doing this is by:

a) Forking the repository on your own account b) Push the branch on your forked repository c) Make a pull request to the upstream repository

jacobpmeyer commented 3 years ago

Thank you!