1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages.ko/common/git-ignore.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

21 lines
660 B
Markdown

# git ignore
> `.gitignore` 파일을 표시/업데이트.
> `git-extras`의 일부. 같이 보기: `git ignore-io`.
> 더 많은 정보: <https://github.com/tj/git-extras/blob/master/Commands.md#git-ignore>.
- 모든 전역 및 로컬 `.gitignore` 파일의 내용을 표시:
`git ignore`
- 파일을 비공개로 무시하고, `.git/info/exclude` 파일을 업데이트:
`git ignore {{파일_패턴}} --private`
- 파일을 로컬에서 무시하고, 로컬 `.gitignore` 파일을 업데이트:
`git ignore {{파일_패턴}}`
- 파일을 전역에서 무시하고, 전역 `.gitignore` 파일을 업데이트:
`git ignore {{파일_패턴}} --global`