Git stash ( git stash ) Command
  
   To get the list of stash in your local system, just type the following commands on terminal git stash list
To apply any of the listed stash above, just type following
git stash apply stash@{10} 
     For details of git stash apply command, click here 
     How to apply a patch, taken from the command  git diff > patchfileName.diff 
git apply patchfileName.diff