An introduction to version control with XR development created by Ashley Neall
.fbx
, .obj
, .blend
, etc..png
, .jpg
, .psd
, etc..wav
, .mp3
, etc..mp4
, .avi
, etc..unity3d
, .assetbundle
cd </path/to/repository>
git lfs track "*.<fileextension>"
to add a file type for LFS trackinggit add .gitattributes
git commit -m "LFS-related message"
to commit the .gitattributes file#
are comments (not part of the specified ignored information).gitignore
file in the root directory of the Git repository (i.e. your XR project repository)
.gitignore
files can be placed in subdirectories to apply rules locally, but we don’t have to worry about this for now.gitignore
file is committed into a repository → ignore rules are consistent across all environments and for all contributors to the projectLibrary
— ignored bc its contents (compiled asset data, import settings, caching information) are automatically regenerated by Unity when another project contributor works on a clone of the project in the Unity editor
Logs
— ignored bc its contents are contributor-specific Unity logs (editor session warnings, output errors, etc. while working in the Unity editor)
Temp/
— ignores temporary files generated by Unity during runtime and while editingObj/
— ignores stored object files (intermediate files created during the build process) specific to each buildBuild/
and Builds/
— ignores output of build processes (executables) specific to each buildMemoryCaptures/
— ignores memory captures (large, specific info from debugging sessions)*.csproj
, *.sln
, *.suo
, *.userprefs
*.user
, *.unityproj
, *.pidb
, *.booproj
— ignores files specific to contributors’ development environment (created by IDE, like Visual Studio)
/VSCodeSettings.json
— vscode specific*.pidb.meta
, *.pdb.meta
, *.mdb
, *.mdb.meta
— metadata files for debugging symbols specific local builds