1. When MAC OS에서 vim/neovim에 Github Copilot을 설치하고 세팅을 위해 vim/neovim에서 :Copilot setup을 커맨드를 타이핑했을 때. 2. Error Message copilot: Node.js not found in PATH 3. Solution node.js를 인스톨하면 된다. brew install node.js 이후 Github 계정과의 연동을 거치면 세팅 완료.
github
1. When git push 실행 시, 원격 저장소와 로컬 저장소가 동기화되어 있지 않은 경우 데이터 손실을 막기 위해 발생. 2. Error Message git push origin master Username for 'https://github.com': johndoe Password for 'https://johndoe@github.com': To https://github.com/johhdoe/whatever.git ! [rejected] master -> master (fetch first) error: 레퍼런스를 'https://github.com/johndoe/whatever.git'에 푸시하는데 실패했습니다 힌트: Updates were rejected because the remote..
1. When: git clone 시 용량이 너무 클 때 발생 네트워크 불안정 시에도 발생하는 듯 2. Error message: fatal: 너무 빨리 파일이 끝남 fatal: early EOF fatal: index-pack failed 3. Solution: a. 히스토리를 제거하고 clone --depth 1 추가 git clone --depth 1 https://github.com/example/example.git b. 네트워크 연결 양호 확인 4. Reference: Git Instruction page https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---depthltdepthgt