Practice free →
Home › Per Pro Git, the .gitignore patterns for a Unity…

Per Pro Git, the .gitignore patterns for a Unity project typically EXCLUDE which folders from version control?

AOnly README.md and LICENSE files
BLibrary/, Temp/, obj/, Build/ folders
CAll .cs source files at the root
DAssets/ + ProjectSettings/ folders
Answer & Solution
Correct answer: B. Library/, Temp/, obj/, Build/ folders
Pro Git + Unity gitignore template: Library + Temp + obj + Build are regeneratable. Assets + ProjectSettings + Packages must be tracked.
Solve this in the app — Practice practice & 24k+ MCQs →
Related questions