Perforce file syntax syntax to NOT include subfolders

I need to run some p4 commands using the file specifier using the change list, but I do not want to include the files in subfolders. Usually the syntax is:

//depot/projectA/...@1234

However, this includes all subfolders. How can I pause results only for the current folder?

+3
source share
1 answer
//depot/projectA/*@1234

Read more on Perforated Wildcards .

+8
source

Source: https://habr.com/ru/post/1736036/


All Articles