I'm trying to manage a pull request on a repo that I don't own but have admin rights on. When I attempt to pull in changes from another fork, it fails with an error that is less than clear. Here is my workflow...
- Fork main repo
- Make changes in that fork
- Commit to that fork
3.5 (goto step 2) - Submit a pull request to the main repo
As an administrator of the main repo, I'm attempting to merge those changes as follows...
git clone git@github.com:dude/project.git
git checkout -b gtracy-master master
git pull http://gtracy@github.com/gtracy/project.git master
After entering my password, I get the error message...
error: The requested URL returned error: 401 while accessing
http://gtracy@github.com/gtracy/project.git/ifno/refs
Is this workflow wrong? Is there an easier way to manage my own pull requests?
Thanks!