I would like to know if it is possible to find who committed what with P4.
The best would be getting something like:
user committed: com/app/Class.java, com/class/Class2.java etc..
Edit:
Ok I can use:
p4 changes -m 5 -u user //dev/project/...
But this doesn’t give me which files have been committed.
Have any idea?
Thanks a lot guys!
If you want to identify the last user to modify a the file, you could use something like:
This will provide information about the last change to each file, including the name of the user that submitted the change.