我需要签入客户端工作区中的文件。在签入之前,我需要验证文件是否已更改。请告诉我如何检查。
答案 0 :(得分:1)
这是我想到的,以防其他人像我一样寻求解决方案
dftest %>%
filter(percent_power>= 0 & percent_power < 75) %>%
ggscatter(x = "percent_power", y = "PETCO2", color = "group") +
stat_cor(aes(color = group), label.x = 15, label.y = c(20,25)) +
stat_regline_equation(label.x = 15, label.y = c(18,23),
formula = y ~ x,
aes(color = group, label = paste(..eq.label.., ..adj.rr.label.., sep = "~~~~")),) +
geom_smooth(aes(colour=group), method = "lm", formula = y ~ x) +
xlab("Percentage of power (%)") +
ylab(expression(paste("PETC", O[2]," (mmHg)")))
答案 1 :(得分:0)
在这里您可以检查文件的创建和修改时间
>
答案 2 :(得分:0)
使用p4 diff -sr
命令。这将对打开的文件进行比较,并返回未更改文件的名称。