본문 바로가기
Git

[Git] local 파일 Github에 업로드 하는 방법

by 호찌민 2021. 3. 3.

<local file Github에 업로드>

[영역]

  • working directory : 현재 작업 공간
  • Index : 준비 공간, stage 또는 stage area라고도 부름
  • local repository : 나의 PC에 존재하는 저장소인 local repository
  • remote repository : github에 존재하는 원격 저장소

[명령어]

  • git init : .git 폴더를 생성
  • git add : working directory에 변경된 작업 사항을 Index로 추가
  • git commit : Index의 내용을 local repository에 확정 지음.
  • git push : local repository의 내용을 remote repository로 업로드 함.
  • git pull : local repository의 내용을 remote repository에서 가져옴.
  • git clone : .git을 포함한 remote repository의 내용을 local repository에 복사

[본인 PC에서 진행하는 과정]

- 처음 파일 업로드 하는 경우

 

명령 프롬프트 실행 -> cd {작업할 공간} -> git init -> git add {파일명} 또는 git add . (* . : 파일 전체 Index로 추가)

-> git commit (*-m : 간단한 설명문 작성) -> git remote add {별칭} {remote repository 주소} ->

git push {별칭} master

 

 

 

*remote repository 주소는 Github 해당 repository에 접속하여 Code를 누른다면 HTTPS를 확인할 수 있다.

아래의 그림을 참조하면 된다.

<remote repository 주소 확인 방법>

 

- 파일 수정 후 업로드 하는 경우

 

명령 프롬프트 실행 -> cd {작업할 공간} -> git add {파일명} 또는 git add . -> git commit -> git push {별칭} master

 

<Github에 코드 업로드 완료된 상태>

공부는 victorydntmd.tistory.com/74?category=682764 님의 블로그를 통해 공부할 수 있었다. 매우 정리가 잘 되어

있어서 이해하기 편했음 👍

 

꾸준히 프로젝트를 진행하고 수정되는 코드 및 사항들을 Git에 업로드 하는 습관을 길러보자 !