".gitconfig"의 두 판 사이의 차이

(새 문서: ==개요== ;/root/.gitconfig <syntaxhighlight lang='aconf'> [user] name = testuser email = testuser@example.com [credential "https://github.example.com"] helper = helper = !/roo...)
 
17번째 줄: 17번째 줄:
[http "https://github.com"]
[http "https://github.com"]
proxy = http://10.10.10.10:8080
proxy = http://10.10.10.10:8080
cookieFile = /root/.gitcookie
cookieFile = /tmp/cookie.txt
</syntaxhighlight>
</syntaxhighlight>



2023년 2월 10일 (금) 10:02 판

1 개요

/root/.gitconfig
[user]
	name = testuser
	email = testuser@example.com
[credential "https://github.example.com"]
	helper = 
	helper = !/root/.local/bin/gh auth git-credential
[credential "https://github.com"]
	helper = 
	helper = !/root/.local/bin/gh auth git-credential
[credential "https://gist.github.com"]
	helper = 
	helper = !/root/.local/bin/gh auth git-credential
[http "https://github.com"]
	proxy = http://10.10.10.10:8080
	cookieFile = /tmp/cookie.txt

2 같이 보기

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