i would like to know which files would be updated (and hopefully the changes that would occur) if i'd do a 'git pull'...

is

git stash 
git fetch
git diff origin/master
git stash apply 

the answer ?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 6 down vote accepted

See here. To quote:

you can do a 'git fetch origin', then a 'git log master..origin/master', and it'll tell you what changes will be merged if you do a 'git merge origin/master'.

link|improve this answer
i guess also 'git log master...origin/master' – arod Aug 9 '10 at 21:24
feedback

Since git pull is git fetch plus git merge, do the fetch first, and then diff the remote branch against your current branch (git diff origin/whatever..).

link|improve this answer
Isn't that what he just said? – ZeissS Feb 18 '10 at 15:37
feedback

is

git stash 
git fetch
git diff origin/master
git stash apply 

the answer ?

Yes.

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.