When I check out files I have a new branch for those files. If I create a new file it is not added into the branch until I check the files back in. Before they are checked in the new file is under /Main/LATEST. Is there any way to find all files associated with a branch including newly created files?
So far I have only been able to find all files in the branch.
Only if your config spec is set to create a new branch, though. It has to have a
-mkbranchrule in it (as this one)If you add to source control a file, without checking it in immediately, it creates a
/main/0version (with an empty content file).You can search for those file having just a version 0:
But if the new file was not even added to source control, then it is a private file, and you can list those as well (
cleartool lsprivatein a dynamic view, for instance).