Check what files will be pulled after git fetch

git log master..origin/master  # only commits
# OR 
git diff master origin/master --name-only  # only file names    
# OR 
git whatchanged --name-only ..origin  # commits and file names

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.