porque eu não posso verificar outro ramo git

$ git branch -a
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/lab_master
  remotes/origin/master

$ git checkout lab_master
error: Your local changes to the following files would be overwritten by checkou                                                                                                                           t:
        **project.properties**
Please, commit your changes or stash them before you can switch branches.
Aborting

Por que eu não consegui fazer o checkout do branch lab_master?

outra pergunta: por que não posso comparar o arquivo atual com o arquivo em outro ramo?

$ git diff project.properties -b lab_master
fatal: bad flag '-b' used after filename

questionAnswers(3)

yourAnswerToTheQuestion