tldr/pages.ko/common/git-clean.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

768 B

git clean

워킹 트리에서 추적되지 않는 파일을 제거합니다. 더 많은 정보: https://git-scm.com/docs/git-clean.

  • 깃에 의해 추적되지 않는 파일들 지우기:

git clean

  • 깃에 의해 추적되지 않는 파일들 인터액티브 하게 지우기:

git clean {{-i|--interactive}}

  • 어떤 파일들이 제거될 것인지 실제로 지우지 않고 보여주기:

git clean --dry-run

  • 깃에 의해 추적되지 않는 파일들 강제적으로 지우기:

git clean {{-f|--force}}

  • 추적되지 않은 [d]irectory 강제로 삭제:

git clean {{-f|--force}} -d

  • 추적되지 않는 파일들, .gitignore.git/info/exclude 안에 있는 무시된 파일들을 포함하여 지우기:

git clean -x