Visaul Studio Code
로 코드를 작성 후 Github
에 연동시키려고 한다.
일단, Github에 연동시켜줄 Repository
를 만들어준다.
해당 Repository에 HTTPS 주소
를 복사해준다.
Visual Studio Code
에 접속하여, 파이썬 파일을 하나 만들어준다.
그리고 왼쪽에 해당 아이콘
을 클릭하여준다.
'+' 버튼을 눌러 변화된 로그들을 업로드
해준다.
Commit
아이콘을 클릭해준다
메모
를 입력해준다. 어떤 것인지 설명을 적어주면 된다.이제 깃허브에 업로드!
Visual Studio Code 에서 Terminal 창을 열어줍니다
(1)git remote add origin + 아까 복사했던 repository 주소
ex)git remote add origin https://github.com/ssmin0606/django-project.git
(2)git pull origin main --allow-unrelated-histories
(3)git push -u origin main
이 순서로 작성해주면 github에 push된 것을 볼 수 있다.