git (12) 썸네일형 리스트형 git 명령어 사용법 git 명령어 git remote remove origin (기존 원격 저장소 삭제) git remote -v (원격 저장소 확인) git remote init () "Reinitialized existing Git repository in C:/Users/내컴퓨터/Desktop/Nest_JS/Dev_Backend/.git/" git status (로컬 저장소 올리기 전 staging area의 목록 ) git add 파일이름 vs git add . 만약) warning: in the working copy of '.eslintrc.js', LF will be replaced by CRLF the next time Git touches it 에러의 경우 > git config --global core.a.. On branch master nothing to commit, working tree clean 위의 에러를 볼 경우 당황스럽다. 어떻게 해결해야 될까 ? 결론부터 이야기 하자면 커밋 이후에는 당연히 워킹 트리(staging area)는 깨끗하다 라는 의미이다. 그리고 아래는 커밋을 했기 때문에 push만 하면된다! 그래서 깔끔하게 해결! waring: LF will be replaced~ 은 말 그대로 경고이다. 그래서 변경된 파일은 실제 staging area로 이동했다. git config --global core.autocrlf true로 경고가 사라진다. git add . git status warning: in the working copy of 'src/member/member.controller.ts', LF will be replaced byext time Git touches it.. 이전 1 2 다음