java springboot jpa project2 [Github / Error] - warning: in the working copy of '.gitignore', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '.gitignore', LF will be replaced by CRLF the next time Git touches it에러 발생git add 명령어를 입력하니 위와 같은 에러가 발생했습니다.에러 원인원인에 대해서 찾아보니 CRLF와 해결 방안에 대한 설명이 있어 정리해보려고 합니다.1. CR (Carriage-Return)Mac 초기 모델 줄바꿈 문자열 = \rASCII 코드 = 13커서 위치를 맨앞으로 옮기는 동작커서 위치를 앞으로 이동2. LF (Line-Feed)Mac, Linux (Unix 계열) 줄바꿈 문자열 = \nASCII 코드 = 10커서 위치는 그대로 두고 종이의 한라인 위로 올리는 동작현재 위치에서 바로 아래로 이동종이를 .. 2024. 7. 30. [Java / Spring / JPA / Error] - org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDLGenerationTarget encountered exception accepting command : Error executing DDL에러해결 방법1찾아보니 예약어 때문이라고 합니다.예약어란 컴퓨터 프로그래밍 언어에서 이미 문법적인 용도로 사용되고 있기 때문에 식별자로 사용할 수 없는 단어를 뜻합니다.예약어를 찾아 수정하면 됩니다. 2024. 7. 30. 이전 1 다음