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

 
(사용자 4명의 중간 판 11개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{소문자}}
;git config
;git config
* 특정저장소 또는 전역 옵션을 조회·설정하는 git 명령어
* 특정저장소 또는 전역 옵션을 조회·설정하는 git 명령어


==실습==
==실습1: 계정 설정==
* 사용자 이름과 이메일 설정
* 사용자 이름과 이메일 설정
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# git config -l
root@zetawiki:~# git config -l
root@zetawiki:~# git config --global user.name 'gituser1'
root@zetawiki:~# git config --global user.name 'gituser1'
12번째 줄: 13번째 줄:
user.name=gituser1
user.name=gituser1
user.email=gituser1@zetawiki.com
user.email=gituser1@zetawiki.com
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# cat ~/.gitconfig  
root@zetawiki:~# cat ~/.gitconfig  
[user]
[user]
name = gituser1
name = gituser1
email = gituser1@zetawiki.com
email = gituser1@zetawiki.com
</source>
</syntaxhighlight>
 
==실습2: alias 설정==
* "push origin master"를 "po" alias 설정
<syntaxhighlight lang='console'>
$ git config --global alias.po "push origin master"
$ git config -l
alias.po=push origin master
</syntaxhighlight>
<syntaxhighlight lang='console'>
$ cat ~/.gitconfig
[alias]
po = push origin master
</syntaxhighlight>
<syntaxhighlight lang='console'>
$ 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
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[git init]]
{{z컬럼3|
*[[git commit]]
* [[.gitconfig]]
*[[git 명령어]]
* [[git init]]
*[[Your name and email address were configured automatically based]]
* [[git commit]]
* [[git 명령어]]
* [[git config --list]]
* [[git config --global --edit]]
* [[Your name and email address were configured automatically based]]
}}
 
==참고==
* https://git-scm.com/book/ko/v2/Git의-기초-Git-Alias


[[분류: git]]
[[분류: git]]

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 }}