본문 바로가기
IT Tools

git 기본 설정 및 사용 방법

by 떠도리c 2024. 8. 29.
반응형

git 실행 및 기본 설정

  • git 실행윈도우 시작 - git 검색 - gitbash 실행
  • git 초기 설정

- 이름

git config --global user.name "[이름]"
e.g. git config --global user.name "xxx"

- 이메일

git config --global user.email "[github 가입 이메일 주소]"
e.g. git config --global user.name "xxxx@gmail.com"
  • 설정 확인
    user.name, user.email 확인

 

 

git 사용 방법

환경 : vscode
 
  • 터미널 - 새 터미널
    vscode 화면 하단부에 터미널창이 열림
 
  • 만약 git bash 터미널이 아니고 powershell로 터미널이 열릴 경우
    터미널 화면 우측에 +옆 아래 화살표를 눌러 git bash 터미널로 변경
  • git 초기화
    • git init
 
  • git add [파일명]
# e.g. index.html 파일을 업로드 하겠다.
git add index.html

# e.g. 모든 파일을 업로드 하겠다.
git add .​
  • git status
업로드, 추가 한 파일들을 알려줌
 
 
  • 히스토리 만들기
# 첫번째 commit이다.

git commit  -m "[comment]"
e.g. git commit -m "first commit"
 
  • github 저장소 연결
  • github 연결 확인
git remote -v
 
 
 
  • github로 파일 전송
git push origin [branch 이름]
e.g. git push origin master
 
 
 
 
  • github 파일 업데이트
    1. git add 명령어로 업데이트 파일명 선택
    2. git commit -m "[comment]" 업데이트 코멘트 작성
    3. git push origin master 로 파일 업로드
    4. github에서 업데이트 확인
 
 
 
 
  • github Branch 만들기
git checkout -b [branch 이름]
e.g. git checkout -b myBranch
 
 
 
  • github 소스코드 가져오기
git pull origin [branch명]
e.g. git pull origin master
 
반응형