[Github] Git 명령어

amudomolla·2022년 2월 28일
0

Git

목록 보기
1/11


git init

  • git 저장소 초기화.
  • git init으로 초기화시키면 해당 directory를 local git storage로 등록.

git clone

  • remote Repository에 있는 폴더를 local로 가져오는 명령어
  • 현재 directory에 github의 repository를 그대로 복사

git add

  • git add 뒤에 stage에 올릴 파일 이름을 입력
  • git add --all 혹은 git add . 를 입력하면 status에 나온 변경된 내용을 모두 stage에 올려준다.

git commit -m [commit message]

  • 파일이나 폴더의 변경사항을 local repository에 저장

git push

  • local repository에서 남겨놓은 파일 변경사항을 remote repository에 업로드

git branch [새로운 브랜치명]

  • 새로운 branch 생성
  • git branch 만들어진 branch를 확인할 때의 명령어

git checkout [브랜치명]

  • 현재 브랜치에서 [브랜치명]으로 이동

git remote

  • 현재 등록된 remote Repository를 확인할 때의 명령어
  • git remote -v : 현재 local repository와 연결된 저장소 URL을 확인 가능
profile
👩‍💻 기록 및 복습을 위함

0개의 댓글