1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages.ko/common/git-credential.md
코드싸이 0819a11434
git-*: add and update Korean translation (#14031)
* git-a*: add and update Korean translation

* git-b*: add and update Korean translation

* git-*: add and update Korean translation

* Update git-standup.md

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-10-08 00:22:02 +09:00

16 lines
631 B
Markdown

# git credential
> 사용자 자격 증명을 검색하고 저장.
> 더 많은 정보: <https://git-scm.com/docs/git-credential>.
- 자격 증명 정보를 표시하고, 구성 파일에서 사용자 명과 비밀번호를 검색:
`echo "{{url=http://example.com}}" | git credential fill`
- 모든 구성된 자격 증명 도우미에 자격 증명 정보를 보내서 나중에 사용할 수 있도록 저장:
`echo "{{url=http://example.com}}" | git credential approve`
- 모든 구성된 자격 증명 도우미에서 지정된 자격 증명 정보를 삭제:
`echo "{{url=http://example.com}}" | git credential reject`