linux:p4
差别
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
linux:p4 [2021/03/15 19:03] – [4. p4 revert] zhangguo | linux:p4 [2023/03/17 10:12] (当前版本) – 外部编辑 127.0.0.1 | ||
---|---|---|---|
行 41: | 行 41: | ||
</ | </ | ||
+ | |||
+ | <code bash> | ||
+ | p4 revert //... | ||
+ | |||
+ | Revert every file you have open, in every one of your pending changelists, | ||
+ | |||
+ | p4 revert -c default //... | ||
+ | |||
+ | Revert every file open in the default changelist to its pre-opened state. | ||
+ | |||
+ | p4 revert -n *.txt | ||
+ | |||
+ | Preview a reversion of all open .txt files in the current directory, but don't actually perform the revert. | ||
+ | |||
+ | p4 revert -c 31 *.txt | ||
+ | |||
+ | Revert all .txt files in the current directory that were open in changelist 31. | ||
+ | |||
+ | p4 revert -a | ||
+ | |||
+ | Revert all unchanged files. This command is often used before submitting a changelist. | ||
+ | |||
+ | </ | ||
===== - p4 diff ===== | ===== - p4 diff ===== | ||
只有放入p4 changelist里面的文件 (即需要先用p4 edit xxx命令),才可以进行p4 diff。 | 只有放入p4 changelist里面的文件 (即需要先用p4 edit xxx命令),才可以进行p4 diff。 | ||
行 46: | 行 69: | ||
这跟git不一样,git可以直接git diff, p4 有些麻烦。 | 这跟git不一样,git可以直接git diff, p4 有些麻烦。 | ||
+ | |||
+ | |||
+ | |||
+ | ===== - p4 files ===== | ||
+ | 显示p4指示路径有哪些文件。 | ||
+ | |||
+ | <code bash> | ||
+ | p4 files //depot/... Provides information about all files in the depot. | ||
+ | p4 files // | ||
+ | p4 files @2011/03/10 Provides information about all depot file revisions that existed on March 10, 2011. | ||
+ | p4 files @2011/ | ||
+ | p4 files // | ||
+ | p4 files // | ||
+ | p4 files -a // | ||
+ | p4 files -A // | ||
+ | </ | ||
===== - p4 print ===== | ===== - p4 print ===== | ||
行 115: | 行 154: | ||
p4 删除文件。 | p4 删除文件。 | ||
+ | ===== - p4 client ===== | ||
+ | |||
+ | 删除p4 client | ||
+ | |||
+ | <code bash> | ||
+ | p4 [g-opts] client -d [-f [-Fs]]clientname | ||
+ | </ |
linux/p4.1615806238.txt.gz · 最后更改: 2023/03/17 10:12 (外部编辑)