Hi Jeremy,
AFAIK you can't produce a diff using git against a remote repository.
But you can run
git fetch origin # update git's local repository metadata with
changesets from origin
upload.py [other options] origin/master # compare against origin/master
I'm not 100% sure if it's that what you really want. When comparing
your local changes against the remote branch without merging them
first the diff may be not what you expect. It may look like your local
changes will revert changes in upstream, but in fact they're just not
merged.
--Andi
>
> Thanks
> J
>
> --
> You received this message because you are subscribed to the Google Groups "codereview-discuss" group.
> To post to this group, send email to
coderevie...@googlegroups.com.
> To unsubscribe from this group, send email to
codereview-disc...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/codereview-discuss?hl=en.
>