What\'s the git equivalent of svn status -u or more verbose svn status --show-updates. The svn status --show-updates command shows th
svn status -u
svn status --show-updates
If you fetch:
git fetch
instead of pulling:
git pull
from the remote, you can then inspect what changed with git log. To apply the changes:
git log
git merge /