I'm trying to create a PR within the repo that I forked (not to the original repo). But whenever I push my code and create a PR, it gets created in the original repo.
Steps I took:
- forked Bob's repo ( with master, dev, ABC, and DEF branches)
- cloned to my local machine using myusername/repo.git (made sure git remote -v points to my forked repo)
- git checkout -b newbranch
- ( made some changes to a file )
- git add .
- git commit -m "test"
- git push origin newbranch
- created a PR on github page
- The PR I created on step 8 shows up on Bob's repo as "Open" PR.
What am I doing wrong? How do I make the PR show up in my repo?