本文介绍了Git diff与藏匿处的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怎样才能看到未存储的变化会对当前的工作树进行修改?我想知道在应用它们之前会做出什么样的改变!

解决方案

查看最近的隐藏内容:

  git储存显示-p 

查看任意隐藏:

  git隐藏show -p隐藏@ {1} 
>
$ b

git储存手册页:


How can I see the changes un-stashing will make to the current working tree? I would like to know what changes will be made before applying them!

解决方案

See the most recent stash:

git stash show -p

See an arbitrary stash:

git stash show -p stash@{1}

From the git stash manpages:

这篇关于Git diff与藏匿处的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 07:20