목록github (2)
패키지
깃허브를 다운받았다.로컬 파일을 Git Bash를 이용해 입력하여 올려보려고 한다. 배쉬쉘이라는 것을 이용해 명령어를 이용하여 push를 해보도록 한다.해당 명령어들을 따라하다 보면 파일 하나를 등록하기 위해 여러 영역으로 나누어 파일을 인식하고 있음을 알 수 있다. 아래 명령어들은 원격저장소(Github)까지 올리기 위해 실행하는 일련의 작업들이다. git config Git을 설치했을 때 가장 먼저 하는 것은 Github사이트에 등록된 user name과 e-mail주소고, 초기에 설정해놓는다.자신의 계정정보를 넣고 초기화 한다. 12$ git config --global user.name "test anme"$ git config --global user.email "test@email.com"cs..
깃허브, failed to push some refs to~,Updates were rejected because the remote contains work that you do not have locally 에러 깃허브에 로컬 프로젝트를 push해주려는 도 중 아래와 같은 에러가 발생했다. 123456789$ git push -u origin masterTo https://github.com/wkimdev/Node-js-Project ! [rejected] master -> master (fetch first)error: failed to push some refs to 'https://github.com/wkimdev/Node-js-Project'hint: Updates were rejected b..