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

Viewed 862

Can someone explain the difference between:

git stash

versus:

git stash save

?

Thanks!

1 Answers

From the docs:

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

Related