diff --git a/README.md b/README.md index 6e0d39f9..248f77c6 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,6 @@ Content of the generated ignore.conf, to use as a starting point but to adjust t ``` Binaries -Build DerivedDataCache Intermediate Saved @@ -208,6 +207,7 @@ enc_temp_folder *.code-workspace *.xcodeproj *.xcworkspace +*.plastic.* ``` ##### Sharing settings diff --git a/Source/PlasticSourceControl/Private/SPlasticSourceControlSettings.cpp b/Source/PlasticSourceControl/Private/SPlasticSourceControlSettings.cpp index 0315243a..73e20cf4 100644 --- a/Source/PlasticSourceControl/Private/SPlasticSourceControlSettings.cpp +++ b/Source/PlasticSourceControl/Private/SPlasticSourceControlSettings.cpp @@ -979,7 +979,7 @@ const FString SPlasticSourceControlSettings::GetIgnoreFileName() const /** Create a standard "ignore.conf" file with common patterns for a typical Blueprint & C++ project */ bool SPlasticSourceControlSettings::CreateIgnoreFile() const { - const FString IgnoreFileContent = TEXT("Binaries\nBuild\nDerivedDataCache\nIntermediate\nSaved\nScript\nenc_temp_folder\n.idea\n.vscode\n.vs\n.ignore\n*.VC.db\n*.opensdf\n*.opendb\n*.sdf\n*.sln\n*.suo\n*.code-workspace\n*.xcodeproj\n*.xcworkspace"); + const FString IgnoreFileContent = TEXT("Binaries\nDerivedDataCache\nIntermediate\nSaved\nScript\nenc_temp_folder\n.idea\n.vscode\n.vs\n.ignore\n*.VC.db\n*.opensdf\n*.opendb\n*.sdf\n*.sln\n*.suo\n*.code-workspace\n*.xcodeproj\n*.xcworkspace\n*.private.*"); return FFileHelper::SaveStringToFile(IgnoreFileContent, *GetIgnoreFileName(), FFileHelper::EEncodingOptions::ForceUTF8WithoutBOM); }