Sorry if this was answered somewhere else. I've looked at several threads, but to no avail :(
Simple question. We have a remote master branch. A Dev has committed several changes to that remote master branch. I need to apply those to a local branch (the QA server, actually; no dev here), but before doing that, I want git to tell me which commits are pending.
I've tried several combinations of "git diff", using the results from "git branch -a", but nothing came back. Always empty.
$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/respaldo
$
$ git diff HEAD master
$ git diff HEAD origin/master
$ git diff master origin/master
$ git diff master remotes/origin/master
$ git log origin/master..HEAD
$ git diff origin/master..HEAD
$
What am I doing wrong?
Thanks a lot!