Module: Pindo::UncommittedFilesProcessType
- Defined in:
- lib/pindo/options/helpers/git_constants.rb
Overview
Git 未提交文件处理类型枚举用于控制构建前未提交文件的处理方式
Constant Summary collapse
- COMMIT =
自动提交所有更改
:commit- SKIP_WITH_TAG =
不提交,但合并分支并打 tag
:skip_with_tag- SKIP_WITHOUT_TAG =
不提交,不合并分支,不打 tag
:skip_without_tag- RESET =
丢弃所有更改,重置到远程
:reset- STASH =
保存到 stash 区域
:stash- EXIT =
退出程序,要求手动处理
:exit- NONE =
没有需要提交的内容
:none