반응형
깃허브 데스크탑으로 프로젝트 관리하기 강의 오픈!! (인프런 바로가기)
GitHub Desktop에서 Unity 프로젝트를 repository에 추가할 때, 아래와 같은 에러가 발생하는 경우가 있다.
warning: CRLF will be replaced by LF in - xxxx
The file will have its original line endings in your working directory
autocrlf를 true로 변경해주면 되지만, 깃허브 데스크탑에서 되지 않는 경우도 있다.
git config --global core.autocrlf true
autocrlf를 변경해도 안된다면, 아래의 .gitignore에서 경로를 수정하면 된다.
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/
# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
/[Mm]emoryCaptures/
# Recordings can get excessive in size
/[Rr]ecordings/
# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*
# Autogenerated Jetbrains Rider plugin
/[Aa]ssets/Plugins/Editor/JetBrains*
# Visual Studio cache directory
.vs/
# Gradle cache directory
.gradle/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db
# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta
# Unity3D generated file on crash reports
sysinfo.txt
# Builds
*.apk
*.aab
*.unitypackage
*.app
# Crashlytics generated file
crashlytics-build.properties
# Packed Addressables
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
# Temporary auto-generated Android Assets
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*
각 경로 앞에 Project Name을 붙여주면 해결된다.
(코드 비교 Diff Checker)
반응형
'개발 > Git, GitHub' 카테고리의 다른 글
깃허브 - 코드 충돌 후 웹 에디터에서 직접 편집하기 (0) | 2022.09.21 |
---|---|
깃허브 데스크탑 - 중복 로그인 에러 해결하기 (Permission denied returned error 403) (0) | 2022.09.09 |
깃허브에서 New Pull Request로 다른 브랜치에 직접 머지하기 (0) | 2022.08.17 |
깃허브 - 프로젝트 보드 만들기 (Create Project Board in GitHub) (0) | 2022.08.06 |
Git Bash - 이분 탐색으로 버그 발생한 commit 찾기 (0) | 2022.07.31 |
댓글