Closed dealingwith closed 3 years ago
@dealingwith How do I pull a non merged pull request to my local directory?
@jamespeilunli you can just check out this branch. Then if you want to incorporate these changes you merge this branch into your branch:
git fetch
git checkout dm/32-refactoring
git pull
git checkout jh/your-branch-name
git merge dm/32-refactoring
or simply create a new branch based on this one:
git fetch
git checkout dm/32-refactoring
git pull
git checkout -b jh/your-new-branch
resolves #32