목록Github (3)
Taene's
[Unity] Github 프로젝트 관리 및 공유
https://www.youtube.com/watch?app=desktop&v=wBsSUBEUYV4
Github
2025. 2. 7. 00:08
Github Unity.gitignore
https://hereishyun.tistory.com/29
Github
2025. 2. 4. 19:45

1. 깃 프로젝트 내부의 .git 파일(숨겨져있음)2. .git -> config 파일 메모장으로 열기3. [core] 위에 인코딩 설정 입력 후 저장[i18n] commitEncoding = utf-8 logOutputEncoding = utf-8 - editorconfig 파일을 이용해 새 파일 생성 시 utf-8로 생성하도록 설정- editorconfig: 코딩 스타일을 일관되게 설정할 수 있게 해주는 설정파일인데, 이를 통해 indentation(들여쓰기) 스타일과 같은 다를 수 있는 설정들을 미리 지정해 둘 수 있다.1. 프로젝트 내부에 .editorconfig 파일을 생성(VS 프로젝트 우클릭 - Add - New EditorConfig(intelliCode))하고 아래 내용을 붙여넣는다.ro..
Github
2024. 8. 8. 09:53