MinecraftU / 2021-computer-adventures

Repository for our 2021 Computer Adventures Ruby project!
0 stars 0 forks source link

dry up gameboard height and width definitions #33

Closed dealingwith closed 3 years ago

dealingwith commented 3 years ago

resolves #32

jamespeilunli commented 3 years ago

@dealingwith How do I pull a non merged pull request to my local directory?

dealingwith commented 3 years ago

@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