Back
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!
Check this commands
To see the most recent stash:
git stash show -p
To See an arbitrary stash
git stash show -p stash@{1}
“By default, the command shows the diffstat, but it will accept any format known to git diff (e.g., git stash show -p stash@{1} to view the second most recent stash in patch form).”
Reference: https://git-scm.com/docs/git-stash#Documentation/git-stash.txt-showltoptionsgtltstashgt
For more details on working of git and devops tools do visit :
https://intellipaat.com/devops-certification-training/
31k questions
32.8k answers
501 comments
693 users