일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vscode
- 둔산동맛집
- programmers
- Java
- 우분투
- 개발공부
- 티스토리챌린지
- 티스토리
- ubuntu
- 개발
- Git
- TypeScript
- 코딩테스트
- 오블완
- CodingTest
- EC2
- 리눅스
- AWS
- React
- error
- 코딩
- 개발자
- Tistory
- 스프링부트
- SpringBoot
- 알고리즘
- 자바
- Linux
- 코테
- 프로그래머스
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vscode
- 둔산동맛집
- programmers
- Java
- 우분투
- 개발공부
- 티스토리챌린지
- 티스토리
- ubuntu
- 개발
- Git
- TypeScript
- 코딩테스트
- 오블완
- CodingTest
- EC2
- 리눅스
- AWS
- React
- error
- 코딩
- 개발자
- Tistory
- 스프링부트
- SpringBoot
- 알고리즘
- 자바
- Linux
- 코테
- 프로그래머스
- Today
- Total
목록github (2)
개발자가 된 감자

이클립스에서 작업 후 git bash 에서 git add . 명령어를 실행시켰는데 해당 오류가 발생했다.$ git add .warning: in the working copy of 'src/main/resources/application.properties', LF will be replaced by CRLF the next time Git touches itwarning: in the working copy of 'src/main/java/com/potato/ChatApplication.java', LF will be replaced by CRLF the next time Git touches it OS 마다 줄바꿈 문자열이 다르기 때문에 형상관리를 해주는 git에서 경고메세지를 준 것이다.해결 방안해..

1. 새로운 저장소 만들기깃허브에 로그인 후 New 버튼 클릭 리포지토리명 입력 후 Public/Private 선택 후 Create repository 버튼 클릭하면 완료. 2. 스프링 부트 프로젝트 폴더 내 Git Bash 오픈하기우클릭하여 Open Git Bash here 클릭 순서대로 명령어를 실행시킨다.커밋 전 해당 사이트에 접속하여 .gitignore 내용을 추가할 수 있다.https://www.toptal.com/developers/gitignore#:~:text=gitignore,-.io gitignore.ioCreate useful .gitignore files for your projectwww.toptal.comgit init # 해당 프로젝트에 .git 폴더 생성git add . # ..