1. 레퍼지토리에 업로드 먼저 이전에 실행시켰었던 node.js 관련 폴더를 깃에 새로운 레퍼지토리에 업로드 한다. //해당 폴더 이동 cd /code/BackEnd/20230317/trial //깃 올리기 git init git branch -M main git add . git commit -m 'backend' //깃 페이지에서 새로운 레퍼지토리 생성 및 아래 코드 복붙 git init git add README.md git commit -m "first commit" git branch -M main git remote add origin 레퍼지토리주소 git push -u origin main 2. ncp서버 이동 root@서버IP주소 이후 비밀번호 입력 3. ncp서버에 깃 클론 및 깃설정 g..