开发者

Perforce - How to get the list of files that have been modified locally?

开发者 https://www.devze.com 2023-04-04 01:04 出处:网络
I am looking for a perforce command to get the list of the files that have been modified locally and \"not\" checked-in to the repository.

I am looking for a perforce command to get the list of the files that have been modified locally and "not" checked-in to the repository.

I understand that I "should" get the list of modified files in Pending changelist, but there are scenarios when I don't get to see a modified file in that list. And then on "manually" checking out a file and doing a diff i realize the difference.

Is there any command that could check all the files in a given folder and provide me a list of files that are not same as there state in开发者_StackOverflow中文版 the repository?

I tried "p4 sync", but that did not work.

Thanks for your interest.


Try

p4 diff -f -sa

(see manual for further details)


I use "p4 revert -n ./..."

where

-n

List the files that would be reverted without actually performing the revert.

This lets you make sure the revert does what you think it does before actually reverting the files.


In the recent versions of Perforce, try "p4 reconcile -e"

see: http://www.perforce.com/perforce/r12.1/manuals/cmdref/reconcile.html

It certainly takes its time though (not very fast).


I think, the modified files are submitted locallay (Otherwise, p4 opened ./... will help to find)

If files are already submitted to local perforce and still want to know which all are modified..

  1. p4 changes -m 5 ./... (Should give changes lists)
  2. p4 integrate -n ./... //server/code/base/... (This should list the files to be integrated to mainline.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号