250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- MySQL
- MSSQL
- 문서
- SpringBoot
- Open Source
- STS
- error
- Exception
- myBatis
- Spring Boot
- oracle
- JDBC
- JavaScript
- Source
- Docker
- IntelliJ
- Core Java
- PostgreSQL
- git
- maven
- Python
- spring
- Tomcat
- Eclipse
- AJAX
- ubuntu
- 설정
- 오픈소스
- jpa
- Thymeleaf
Archives
- Today
- Total
헤르메스 LIFE
[Git] Warning 로그 본문
728x90
git add 명령을 실행했는데, 아래와 같은 Warning 메시지가 발생했습니다.
warning: LF will be replaced by CRLF in bora.txt.
The file will have its original line endings in your working directory
warning: in the working copy of 'build.gradle', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'src/main/java/com/octopus/OctopusLoginApplication.java', LF will be replaced by CRLF the next time Git touches it
LF(Line-Feed)를 CRLF(Carriage-Return-Line-Feed)로 변경한다는 메시지입니다.
경고 메시지를 off 시키고 작업하면 됩니다.
변환기능을 사용하지 않고, 메시지도 뜨지 않도록 수정
git config --global core.safecrlf false
728x90
'형상관리' 카테고리의 다른 글
[Git] Github Fork 방법 (2) | 2023.02.24 |
---|---|
[STS] Terminal을 이용한 Git Clone (0) | 2023.02.24 |
[STS] Terminal을 이용한 Git 설정 (0) | 2023.02.22 |
[STS] STS에서 Github 연동 / 프로젝트 업로드 (0) | 2023.02.21 |
[SVN] svn: Unable to create pristine install stream (0) | 2021.04.22 |