user3260977
user3260977

Reputation: 187

How to filter change list by date?

I looked a bunch for a solution online. I need to get all submitted change lists between two dates. The find file does a good job at finding files changed between dates, but not change lists.

Upvotes: 5

Views: 3377

Answers (1)

Xavier T.
Xavier T.

Reputation: 42238

By command line, any changes integrated on any file on Depot path (and sub directories), at the end of September 2015.

  p4 changes -i -t //Depot/path/...@2015/09/21,2015/09/30

If you only want the submitted you must use

 p4 changes -s submitted -t //Depot/path/...@2015/09/21,2015/09/30

-t is there to display the date and makes sure you are correct.

If you want to see more options, you can go the p4 changes manual page.

Upvotes: 3

Related Questions