uwcse440 / web-cse440-au15

1 stars 14 forks source link

Timeout #138

Closed jdaum closed 8 years ago

jdaum commented 8 years ago

small changes made to the website

jayfo commented 8 years ago

Instead of pulling master into your feature branch, rebase onto it:

git checkout timeout
git rebase -i master
git push -f
jdaum commented 8 years ago

Are these commits supposed to appear here? I don't think that happened before....

jayfo commented 8 years ago

It looks like your master is behind, causing this issue:

You need to update your master:

git checkout master
git pull uwcse440 master
git push

Then rebase your branch, and resolve any conflicts while you're at it:

git checkout timeout
git rebase -i master
git push -f

That'll update this pull request.

jayfo commented 8 years ago

Hmmm, we might be in strange git land.

jdaum commented 8 years ago

Ok, it looks better now on the network graph. So I hope it worked.

jayfo commented 8 years ago

Looks great now.