Someone created a migration request for my Github repository. It basically looks good, but I had to make a few minor changes to get it to transfer my continuous integration server.
Github's on-screen instructions to "view" the request should have been executed:
git checkout -b otheruser-fix_somebug git pull https://github.com/otheruser/myrepo.git fix_somebug
Then I made my changes and committed locally. However, when I went to start git push , git told me:
fatal: The current branch otheruser-fix_somebug has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin otheruser-fix_somebug
which I did, but my changes are not displayed on the pull request, but instead, a copy of the otheruser-fix_somebug mirrored in my Github registry and not connected to the pull request.
How do I call git push to get the changes appearing in the transfer request?
git github
Cerin
source share