Is it possible to preview stash contents in git?

后端 未结 16 1714
后悔当初
后悔当初 2020-12-02 03:34

I often put work away for later, then other stuff comes along, and a few weeks later, I want to inspect the stash, and find out what changes it would make if I applied it to

16条回答
  •  失恋的感觉
    2020-12-02 04:03

    yes the best way to see what is modified is to save in file like that:

    git stash show -p stash@{0} > stash.txt
    

提交回复
热议问题