본문 바로가기
컴퓨터 사이언스/에러(error) 노트

git commit error: pathspec '메세지'' did not match any file(s) known to git

by 메리뉴데이 2022. 9. 23.

 

강의를 들으면서 강사님 설명에 따라 git 버전 생성을 실습하던 중,

 

git commit -m '메세지'를 입력했더니

 

다음과 같은 에러 메세지가 떴다.

 

 

 

 

에러 발생시 믿고 찾아보는 stackoverflow로 고고!

에러를 검색했더니

 

주효한 에러의 원인을 찾아 해결할 수 있었다.

 

읽어보면 다음과 같다.

 

(클릭해서 크게 보세요.)

 

돌이켜 생각해보니 강사님을 따라 실습을 했는데, 강사님은 되시고 나는 에러가 뜬 상황이었는데

아래쪽 답변을 보니 그 이유를 알 수 있었다.

강사님은 macOS를 사용하셨어서 싱글과 더블 쿼테이션(작은 따옴표와 큰 따옴표) 둘 다 커밋 메시지 작성시 사용이 가능했고, 나는 windows라 error: pathspec '메세지'' did not match any file(s) known to git 라는 메세지가 떴던 것이었다.

 

위 답변 내용은 윈도우즈에서는 커밋 메세지 작성시 메시지 사이에 공백(space)이 있다면 큰 따옴표 사용만 가능하다는 것 !!!!

 

실제로 메세지를 큰 따옴표로 감싸 작성하니 정상적으로 작동하였다. 구읏

 

 

 

 

https://stackoverflow.com/questions/16951207/git-commit-error-pathspec-commit-did-not-match-any-files-known-to-git

 

git commit error: pathspec 'commit' did not match any file(s) known to git

I am trying to upload a Ruby app to Heroku. I start with git init and then I type git add . and then I use git commit -m initial commit. Whenever I use git commit -m, I receive an error message s...

stackoverflow.com