Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between git stash and git stash save?

Tags:

git

Can someone explain the difference between:

git stash

versus:

git stash save

?

Thanks!

like image 603
Wagner Danda da Silva Filho Avatar asked Nov 09 '17 19:11

Wagner Danda da Silva Filho


1 Answers

From the docs:

Calling git stash without any arguments is equivalent to git stash save.

like image 86
Opal Avatar answered Sep 30 '22 22:09

Opal