I would like to know if my local repo is up to date (and if not, ideally, I would like to see the changes).

How could I check this without doing git fetch or git pull ?

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

Try git fetch --dry-run The manual (git help fetch) says:

--dry-run
Show what would be done, without making any changes.
link|improve this answer
Thanks! Though, it's hard to understand from the output which files were added/modified/removed. – Misha Moroshko Oct 30 '11 at 1:56
You get to see what tags are updated and the start..end commit range for the various branches. If this isn't sufficient, then do it as a proper fetch (not pull) which will give you a proper, separate, local copy of the remote, without affecting your own branch work. A pull would attempt to merge the two, which isn't what you want. The data transfer is the same whether you --dry-run or not. – Philip Oakley Oct 30 '11 at 20:09
feedback

Not really - but I don't see how git fetch would hurt as it won't change any of your local branches.

link|improve this answer
feedback

This is impossible. How can you know whether or not the repository is "up-to-date" without going to the remote repository to see what "up-to-date" even means?

link|improve this answer
feedback

You must run git fetch before you can compare your local repository against the files on your remote server.

This command only updates your remote tracking branches and will not affect your worktree until you call git merge or git pull.

To see the difference between your local branch and your remote tracking branch once you've fetched you can use git diff or git cherry as explained here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.