35

What's a WIP means on a stash commit?

$ git stash list
stash@{0}: WIP on master: 049d078 added the index file
stash@{1}: WIP on master: c264051 Revert "added file_size"
stash@{2}: WIP on master: 21d80a5 added number to log

I'm just curious.

Asim K T
  • 16,864
  • 10
  • 77
  • 99

1 Answers1

50

From the git-stash documentation:

A stash is by default listed as "WIP on branchname …​", but you can give a more descriptive message on the command line when you create one.

WIP stands for work in progress.

martriay
  • 5,632
  • 3
  • 29
  • 39