On Sep 2, 5:17 pm, julian <[email protected]> wrote: > How do I know if there have been changes to a remote tracked repo that > have not been pulled to my local repo, from my local repo without > actually doing a pull? You just do `git fetch` and then see a list of changes using something like `git log ^master origin/master`.
The alternate way, which won't require you to download missing objects (that's what`git fetch` does) but at the same time won't allow you to see the actual commits by which the trees differ, is calling `git remote show origin`. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/git-users?hl=en -~----------~----~----~----~------~----~------~--~---
