[Git] Git 세팅 및 자주 사용하는 명령어

solved_err.log·2022년 10월 18일
0
  • git 저장소 초기화
    git init
  • 필요에 따라 git config 세팅
    git config (–global) user.name “[user-name]”
    git config (–global) user.email [email@address.com]
  • git 저장소 로컬로 복제
    git clone https://github.com/.git (public)
    git clone https://[user-name]@github.com/.git (private)

  • 로컬 <-> 원격 저장소 연결
    git remote -v
    git remote add origin github.com/*.git

  • 브랜치 생성 후 이동
    git checkout -b [branch]

  • 브랜치 삭제
    git branch -d [branch]

  • 원격 저장소 pull
    git pull origin [branch]

  • 변경사항 저장
    git commit -m '[commit message]'
    -m: 옵션 (커밋 메세지 지정)

  • 원격 저장소 push
    git push origin [branch]

  • 현재 브랜치에 다른 브랜치 수정사항 병합
    git merge [another branch]

profile
배우고 기록하는 개발 일기장✍

0개의 댓글