From 51aeba96ecef7377dac49f9aac03c151bf73e4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 4 Dec 2024 18:39:54 +0100 Subject: [PATCH] Update the default ignore.conf with *.private.* --- README.md | 2 +- .../Private/SPlasticSourceControlSettings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); }