나는 깃린이다.
git과 github이 다르다는걸 알게된지 반년도 안됐다.
git 수업을 좀 더 했으면 좋았으련만ㅜㅜ
https://herojoon-dev.tistory.com/10
[Git] 로컬 프로젝트를 GitHub에 Push하기
*Last Update: 2021-09-16 GitHub Repository를 private로 생성할 경우 인증 정보 입력해야함 추가. 1. 로컬환경에 Project 만들기 : 로컬환경에 Project를 생성합니다. 2. GitHub에 빈 Repository 만들기 **로컬에 만든 프
herojoon-dev.tistory.com
+
그리고 자꾸 이런 에러메시지가 뜨는데,
warning: LF will be replaced by CRLF in bora.txt.
The file will have its original line endings in your working directory
아래의 블로그를 참고하면 된다. 왠지 예전에도 올렸던 기억이 난다;;
https://dabo-dev.tistory.com/13
[Git 경고 메세지] LF will be replaced by CRLF in 해결 방안
안녕하세요(・∀・)ゞ Git을 설치하고 GitBash에서 git add 명령어를 입력했는데 git add bora.txt warning: LF will be replaced by CRLF in bora.txt. The file will have its original line endings in your working directory 다음과같
dabo-dev.tistory.com
git config --global core.autocrlf true
OS마다 줄바꿈을 바라보는 문자열이 다르기 때문이다.
매우 성가신데 위의 한줄코드로 해결해주자.