목록Etc/Error (4)
Written by coh at home
fatal: 'orgin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 이 에러는 나의 경우 인터넷 연결이 안 되었을 때 git push -u origin branchName 을 했을 때 발생한 에러다.
fatal: 'orgin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 다음과 같은 에러는 음.. 인터넷 연결이 안 되었을 때 git push -u origin branchName 을 했을 때 발생한 에러다.
error: Your local changes to the following files would be overwritten by checkout: Panthers.yaml Please commit your changes or stash them before you switch branches. Aborting 다음과 같은 에러는 내가 현재 저장한 파일을 커밋하지 않고 branch를 옮길 때 발생한다. 커밋하지 않고 파일이 저장된 상태에서 branch를 옮기면 branch가 덮여씌어질 수 있으니까 error를 발생시킨다. 커밋을 하거나 수정사항을 지우면 해결된다.
java Main Error: Could not find or load main class Main Caused by: java.lang.NoClassDefFoundError: sec02/ch02/Main (wrong name: Main) 다음과 같은 에러가 발생했다. 이런 에러가 발생할 때는 package내에서 java 실행을 하였기 때문에 발생한 에러로 src의 root에서 실행시키면 된다.