1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-29 04:55:28 +02:00
tldr/pages.ko/common/git-bundle.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

1.1 KiB

git bundle

객체와 참조를 아카이브로 패키징합니다. 더 많은 정보: https://git-scm.com/docs/git-bundle.

  • 특정 브랜치의 모든 객체와 참조를 포함하는 번들 파일 생성:

git bundle create {{경로/대상/파일.bundle}} {{브랜치_이름}}

  • 모든 브랜치의 번들 파일 생성:

git bundle create {{경로/대상/파일.bundle}} --all

  • 현재 브랜치의 마지막 5개의 커밋을 포함하는 번들 파일 생성:

git bundle create {{경로/대상/파일.bundle}} -{{5}} {{HEAD}}

  • 최근 7일간의 커밋을 포함하는 번들 파일 생성:

git bundle create {{경로/대상/파일.bundle}} --since {{7.days}} {{HEAD}}

  • 번들 파일이 유효하고 현재 저장소에 적용될 수 있는지 확인:

git bundle verify {{경로/대상/파일.bundle}}

  • 번들에 포함된 참조 목록을 stdout에 출력:

git bundle unbundle {{경로/대상/파일.bundle}}

  • 번들 파일에서 특정 브랜치를 현재 저장소로 언번들:

git pull {{경로/대상/파일.bundle}} {{브랜치_이름}}

  • 번들에서 새 저장소 생성:

git clone {{경로/대상/파일.bundle}}