Question:
How can I find changesets in my version control history containing a specific file?
Resolution:
You can find changesets in your version control history using the cm find command.
Example:
Let’s say you want to show all the change revisions that include the “Assets/MyMaterial.mat” file. You can find them like so:
~/wkspaces/MyProj % cm find revs "where item='Assets/MyMaterial.mat'"
9944 2024/08/12 21:55:24 txt firstname.lastname@unity3d.com /Users/name/wkspaces/MyProj/Assets/MyMaterial.mat#br:/main#12
10020 2024/08/27 12:15:01 txt firstname.lastname@unity3d.com /Users/name/wkspaces/MyProj/Assets/MyMaterial.mat#br:/main#14
Total: 2
------------------------------------------------------------------------------------------------------
More information