IT recording...
[Opensource_git] 02. 깃 환경설정 본문
[원문링크]
https://adorable-aspen-d23.notion.site/OpenSrc_Git_02_-f597b1c8b23444e7bae7296bce193fb3
[2021 - 1학기 수강한 오픈소스SW입문 강의 정리본입니다.]
깃 환경설정
// 1.명령어 여러 개 묶어서 사용하기
git tag; git branch
// 2.환경설정
git config 설정값 //설정
git config --unset 이메일주소 //삭제
EX)
git config user.name "Jionee" //로컬
git config --global user.name "Jionee" //글로벌
--> .git/config 파일에 저장됨 (로컬일때만, 글로벌은 파일생성X)
'Git' 카테고리의 다른 글
[Opensource_git] 06. 브랜치 (0) | 2022.02.17 |
---|---|
[Opensource_git] 05. 원격저장소 (0) | 2022.02.17 |
[Opensource_git] 04. 커밋 (0) | 2022.02.17 |
[Opensource_git] 03. 깃 개념잡기 (0) | 2022.02.17 |
[Opensource_git] 01. 깃과 버전 관리 (0) | 2022.02.17 |
Comments