From 830fe63060aebefb96884c0f1fe1df3ad9ccbe15 Mon Sep 17 00:00:00 2001 From: Deepika4090 <112815481+Deepikabandi@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:09:03 +0530 Subject: [PATCH] Update Notes-27Apr --- GIT Notes/Notes-27Apr | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/GIT Notes/Notes-27Apr b/GIT Notes/Notes-27Apr index b3eef97..afaa0ee 100644 --- a/GIT Notes/Notes-27Apr +++ b/GIT Notes/Notes-27Apr @@ -164,6 +164,13 @@ stash name stash@{0} see what saved in the stash # git show stash@{0} +git stash pop: This command is used to apply and remove the most recent stash.It's equivalent to running git stash apply followed by git stash drop. + +git stash drop: This command is used to discard a specific stash. You need to provide the stash reference as an argument +git stash drop stash@{2} + + + ================================================