"Git config"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
45번째 줄: 45번째 줄:


==같이 보기==
==같이 보기==
* [[git config --global --edit]]
{{z컬럼3|
* [[.gitconfig]]
* [[git init]]
* [[git init]]
* [[git commit]]
* [[git commit]]
* [[git 명령어]]
* [[git 명령어]]
* [[git config --list]]
* [[git config --global --edit]]
* [[Your name and email address were configured automatically based]]
* [[Your name and email address were configured automatically based]]
}}


==참고==
==참고==

2024년 11월 26일 (화) 16:04 기준 최신판

1 개요[ | ]

git config
  • 특정저장소 또는 전역 옵션을 조회·설정하는 git 명령어

2 실습1: 계정 설정[ | ]

  • 사용자 이름과 이메일 설정
root@zetawiki:~# git config -l
root@zetawiki:~# git config --global user.name 'gituser1'
root@zetawiki:~# git config --global user.email gituser1@zetawiki.com
root@zetawiki:~# git config -l
user.name=gituser1
user.email=gituser1@zetawiki.com
root@zetawiki:~# cat ~/.gitconfig 
[user]
	name = gituser1
	email = gituser1@zetawiki.com

3 실습2: alias 설정[ | ]

  • "push origin master"를 "po" alias 설정
$ git config --global alias.po "push origin master"
$ git config -l
alias.po=push origin master
$ cat ~/.gitconfig
[alias]
	po = push origin master
$ git po
	Counting objects: 4, done.
	Delta compression using up to 4 threads.
	Compressing objects: 100% (3/3), done.
	Writing objects: 100% (3/3), 1.03 KiB | 0 bytes/s, done.
	Total 3 (delta 0), reused 0 (delta 0)
	To git@gitlab.com:revinet/www-kumul-pe-kr.git
		54acfa0..4e3dc6e  master -> master

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}