git equivalent of svn status -u

后端 未结 7 948
无人及你
无人及你 2020-12-08 02:11

What\'s the git equivalent of svn status -u or more verbose svn status --show-updates. The svn status --show-updates command shows th

相关标签:
7条回答
  • 2020-12-08 02:56

    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 merge <remote>/<remote-branch>
    
    0 讨论(0)
提交回复
热议问题