git status -s中可能会出现XY ORIG_PATH -> PATH格式的内容,文档中说ORIG_PATH is only shown when the entry is renamed or copied.。
但是生成文件的副本之后,没有在信息中发现相关的内容。
那么这种情况到底在什么时候才会出现呢?
'abc'>'README.md' git add 'README.md' git commit -m 'README' Copy-Item -Path 'README.md' -Destination 'README - Copy.md' git status -s | Should -Be '?? "README - Copy.md"' git add 'README - Copy.md' git status -s | Should -Be 'A "README - Copy.md"' 