목차

SVN 연동

v4.0.0f7 도 확인.

unity3d 설정

GIT 연동

설정 방법은 svn과 같다.

무시할 파일 목록

svn과 git 모두 같다.

svn 설정 : 무시 목록에 추가.

.gitignore
# INCLUDE - dll file need for some plugin
!*.dll
 
# IGNORE
 
.DS_Store
.svn
build
Library
Temp
obj
log
*.suo
*.user
*.userprefs
*.csproj
*.pidb
*.sln
*.unityproj
*.DotSettings
UnityVS
UnityVS.meta
UnityVS.Source.sln.DotSettings

Mercurial 연동

syntax: glob
.DS_Store
Library/*
Temp/*
*.csproj
*.pidb
*.sln
*.unityproj
*.userprefs

참고 주소