Skip to content

Set/Unset P4Ingore

bat
@echo off
for /f %%A in ('p4 -F %%clientRoot%% -ztag info') do set VAR=%%A

powershell.exe -ExecutionPolicy ByPass -File %VAR%"\<PATH_TO_PS1>\SetP4Ignore.ps1"
ps1
# Get local workspace
$LocalWorkspace = (p4 -F %clientRoot% -ztag info) | out-string 
$LocalWorkspace = $LocalWorkspace -replace "`n|`r"

# Set P4Ignore to Dev Path P4Ignore
$P4IgnorePath = Join-Path $LocalWorkspace "Dev"
$P4IgnorePath = Join-Path $P4IgnorePath "p4ignore.txt"

# Set Ignore
p4 set P4IGNORE=$P4IgnorePath

To unset your p4ignore.txt just have to set a path that doesn't exist.