Mercurial 文件状态标识列表
在 Mercurial 中输入
hg status
之后,文件名左侧会有一个文件状态标识,详解如下:
The codes used to show the status of files are:
?? M = modified
?? A = added
?? R = removed
?? C = clean
?? ! = missing (deleted by non-hg command, but still tracked)
?? ? = not tracked
?? I = ignored
???? = origin of the previous file listed as A (added)
可以通过
hg help status
命令来查看详细解释。