개발환경/Git

[Github] VScode에서 Github 업로드 하기

frances._.sb 2022. 7. 15. 16:47
728x90

vscode를 처음 접해보면서 아나콘다와 비슷하면서도 다른 거 같아 애를 먹었다.

jupyter notebook이나 colab은 파일을 하나하나 올려야 했지만, vscode에서 바로 github로 파일 전체를 업로드할 수 있어 간편했다.

 

순서는 다음과 같다.

 

  1. GitHub에서 repository 생성
  2. 해당 repository의 URL복사
  3. vscode에서 Source Control 아이콘 클릭
  4. Initialize Repository 버튼 클릭(로컬 repository 초기화)
  5. CHANGES의 '+'버튼 클릭(모든 파일 추가)
  6. Commit(체크모양) 아이콘 클릭
  7. Commit 내용 입력 후 엔터(로컬 repository에 커밋)
  8. Terminal에서 "git remote add origin + '2번에서 복사한 url'" 입력
    (원격 repository 주소를 지정)
    ex) git remote add origin https://github.com/Psubinn
  9. "git pull origin main --allow-unrelated-histories" 입력
    (Github 내용을 로컬 repository에 반영)
  10. "git push -u origin master" 입력
728x90
반응형

'개발환경 > Git' 카테고리의 다른 글

[Git] main branch merge commit 오류 (미해결)  (1) 2024.02.28
[Git] Detached Head  (4) 2024.02.01
[Gitlab] Gitlab 사용하기  (2) 2023.11.16
[Github] vscode Github 파일 업데이트 방법  (0) 2022.07.22