ucsb-cs56-projects / cs56-games-fish-animation

-
1 stars 11 forks source link

Change the score and health bars #87

Closed yuhaozhang97 closed 6 years ago

xavierholt commented 6 years ago

Looks good! I can't merge just yet, though, 'cause Github says there are merge conflicts. You should resolve those, and then you're good to go.

To do that, first make sure you have an "upstream" remote for the official repo (you can check this with git remote -v). If you don't have one, you can add it with:

git remote add upstream git@github.com:UCSB-CS56-Projects/cs56-games-fish-animation.git

Once you have it, pull in the changes from the official master branch. If there are conflicts, Git should tell you how to fix them:

git pull upstream master

And once you've fixed the conflicts, push to your branch:

git push

Let me know if you have any trouble!