Skip to content

Commit 51aeba9

Browse files
committed
Update the default ignore.conf with *.private.*
1 parent 02d38d6 commit 51aeba9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ Content of the generated ignore.conf, to use as a starting point but to adjust t
189189

190190
```
191191
Binaries
192-
Build
193192
DerivedDataCache
194193
Intermediate
195194
Saved
@@ -208,6 +207,7 @@ enc_temp_folder
208207
*.code-workspace
209208
*.xcodeproj
210209
*.xcworkspace
210+
*.plastic.*
211211
```
212212

213213
##### Sharing settings

Source/PlasticSourceControl/Private/SPlasticSourceControlSettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ const FString SPlasticSourceControlSettings::GetIgnoreFileName() const
979979
/** Create a standard "ignore.conf" file with common patterns for a typical Blueprint & C++ project */
980980
bool SPlasticSourceControlSettings::CreateIgnoreFile() const
981981
{
982-
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");
982+
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.*");
983983
return FFileHelper::SaveStringToFile(IgnoreFileContent, *GetIgnoreFileName(), FFileHelper::EEncodingOptions::ForceUTF8WithoutBOM);
984984
}
985985

0 commit comments

Comments
 (0)