Skip to content

Instantly share code, notes, and snippets.

@tnaseem
Created September 15, 2023 17:11
Show Gist options
  • Select an option

  • Save tnaseem/1caf1568738f95008cc67709e96bed72 to your computer and use it in GitHub Desktop.

Select an option

Save tnaseem/1caf1568738f95008cc67709e96bed72 to your computer and use it in GitHub Desktop.

Revisions

  1. Tarique Naseem created this gist Sep 15, 2023.
    90 changes: 90 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,90 @@
    # VSCode user-specific files
    .vs/

    # Compiled object files
    *.slo
    *.lo
    *.o
    *.obj

    # Precompiled headers
    *.gch
    *.pch

    # Compiled dynamic libraries
    *.so
    *.dylib
    *.dll

    # Fortran module files
    *.mod

    # Compiled static libraries
    *.lai
    *.la
    *.a
    *.lib

    # Executables
    *.exe
    *.out
    *.app
    *.ipa

    # These project files are generated by the engine
    *.xcodeproj
    *.xcworkspace
    *.sln
    *.suo
    *.opensdf
    *.sdf
    *.VC.db
    *.VC.opendb

    # Precompiled assets
    SourceArt/**/*.png
    SourceArt/**/*.tga

    # Binary files
    Binaries/*
    Plugins/*/Binaries/*

    # Builds
    Build/*

    # Whitelist PakBlacklist-<BuildConfiguration>.txt files
    !Build/*/
    Build/*/**
    !Build/*/PakBlacklist*.txt

    # Don't ignore icon files in Build
    !Build/**/*.ico

    # Built data for maps
    *_BuiltData.uasset

    # Configuration files generated by the editor
    Saved/*

    # Compiled source files for the engine to use
    Intermediate/*
    Plugins/*/Intermediate/*

    # Cache files for the editor to use
    DerivedDataCache/*

    # Don't ignore icons and splash images for mobile apps
    !Build/IOS/Resources/
    Build/IOS/Resources/*
    !Build/IOS/Resources/Graphics/
    Build/IOS/Resources/Graphics/*
    !Build/IOS/Resources/Graphics/*.png
    !Build/Android/res/
    Build/Android/res/*
    !Build/Android/res/*/
    Build/Android/res/*/*
    !Build/Android/res/*/*.png

    # Ignore plugin binaries in deep subfolders
    Plugins/**/Binaries/*
    Plugins/**/Intermediate/*