LoginSignup
1
2

More than 1 year has passed since last update.

Unity git管理用.gitignoreファイルメモ

Posted at

Unityを初めて動かしたときに全てのファイルをgit管理してpushにめちゃくちゃ 時間かかってしまったのでバージョン管理する必要のないファイルをコピペで貼れるようにドキュメントを残していきます。

.gitignoreに貼り付けるコード

/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*

# Autogenerated VS/MD solution and project files
ExportedObj/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd

# Unity3D generated meta files
*.pidb.meta

# Unity3D Generated File On Crash Reports
sysinfo.txt

# Builds
*.apk
*.unitypackage

# Visual Studio
.vs
Release/
Debug/
1
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2