git - stash 提交上的 `WIP` 是什么?

标签 git git-commit git-stash

WIP 在 stash 提交中意味着什么?

$ 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

我只是好奇。

最佳答案

来自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 代表ork in pprogress

关于git - stash 提交上的 `WIP` 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39071360/

相关文章:

Android Studio 从 VCS 获取来自服务器的意外文件结尾

git - 远程仓库文件名的大小写与本地不同,但没有看到任何变化

linux - 执行和创建 Git 策略

Gitignore 不会更新我的仓库中已有的文件

git 提交 : cannot read lockfile

git - 撤消 git 自动 merge

git - 我怎样才能阻止自己使用 'git commit -a' ?

git - 如何列出添加到 GIT 存储库第一次提交的所有文件?

git - 更改 Git 存储消息

git - 如何将文件添加到 git 中的现有存储?