git equivalent of svn status -u

后端 未结 7 954
无人及你
无人及你 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 
    

    instead of pulling:

    git pull 
    

    from the remote, you can then inspect what changed with git log. To apply the changes:

    git merge /
    

提交回复
热议问题