깃허브

전클로네·2021년 5월 28일
0

깃허브 공부 정리


git 이란?

분산형 버전관리 시스템

git 의 5 단계

초기화 > 커밋 > 브랜치 > 병합 > 푸시

git config 명령어


  • 로컬 config 설정
    git config --local user.name "깃헙이름"
    git config --locla user.email "깃헙 로그인 아이디"

  • 글로벌 config 설정
    git config --global user.name "깃헙이름"
    git config --global user.email "깃헙 로그인 아이디"

  • 전체 config 확인
    git config --list

  • 로컬 / 글로벌 config list 확인
    git config --local --list
    git config --global --list

  • user.name, user.email 삭제
    git config --unset --local user.name
    git config --unset --local user.email
    git config --unset --global user.name
    git config --unset --global user.email

profile
안녕하세요. 노드로 개발하는 마운틴러버 개발자 입니다.

0개의 댓글