Skip to content

Commit

Permalink
Update the default ignore.conf with *.private.*
Browse files Browse the repository at this point in the history
  • Loading branch information
SRombautsU committed Dec 4, 2024
1 parent 02d38d6 commit 51aeba9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -208,6 +207,7 @@ enc_temp_folder
*.code-workspace
*.xcodeproj
*.xcworkspace
*.plastic.*
```

##### Sharing settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 51aeba9

Please sign in to comment.