깃허브 사용법

· IT 지식
이번 노트북에 새롭게 개발환경을 설치하면서 개발환경을 다시 구축하였다. 하는김에 vsCode와 github의 연동을 쉽게 하는법에대해 알려주겠다. 1. 깃 설치 https://git-scm.com/ Git git-scm.com 2. vscode 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite pl..
· Git
이 방법을 Terminal을 이용한 업로드 방식이다. 아래의 코드를 차례로 입력하면 업로드가 된다. git init git add your_want_fill //만약 해당 위치에있는 모든것을 올리고 싶을때는 git add . git commit -m 'first.commit' git branch -M main git remote add origin your_git.git git push -u origin main !! 중요!! 푸쉬가 안될경우 pull을 하지 않아 그럴 수 있다. 그럴때에는 git pull origin main 만약 fatal: remote origin already exists. 이 요류 발생 시 git remote rm origin 명령어를 통해 저장소를 지워주고 다시 git remo..
TeaHuiLee
'깃허브 사용법' 태그의 글 목록