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 <remote>
instead of pulling:
git pull <remote>
from the remote, you can then inspect what changed with git log. To apply the changes:
git log
git merge <remote>/<remote-branch>