Undo ignored items

If you have ignored files and folders in your workspace that you want to include in P4 One actions again, you need to edit the P4 One configuration file (.p4oneconfig.yaml) to remove the ignored items.

Functionality for ignoring items is currently limited. To learn more, see Known issues
  1. From the workspace folder, open the .p4oneconfig.yaml file in a text editor.

  2. In the file, under items, remove the items you no longer want P4 One to ignore.

  3. Save the file.

    The ignored items are now included in P4 One actions.

Example

In your .p4oneconfig file, you have three ignored items. You now want to include README.txt and the Builds folder in P4 One actions.

To undo the ignore, delete the - README.txt and - Builds lines from the .p4oneconfig file.

Copy
Before editing
ignore:
    items:
        - README.txt
        - Instructions.txt
        - Builds
    pattern_matching: p4oneignore
Copy
After editing
ignore:
    items:
        - Instructions.txt
    pattern_matching: p4oneignore