1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/git-commit-tree.md
Chooooo d9fa044399
git-*: add Korean translation (#13455)
* git-config: add Korean translation

* git-{commit-tree|commit-graph}: add Korean translation

* git-{reflog|stash}: add Korean translation
2024-08-19 23:09:47 +09:00

707 B

git commit-tree

Git의 내부 동작을 직접 다루는 명령어로, 커밋 객체를 직접 생성합니다. 참조: git commit. 더 자세한 정보: https://git-scm.com/docs/git-commit-tree.

  • 지정된 메시지로 커밋 객체 생성:

git commit-tree {{tree}} -m "{{message}}"

  • 지정된 파일의 내용을 커밋 메시지로 사용하여 커밋 객체 생성 (stdin의 경우 - 사용):

git commit-tree {{tree}} -F {{path/to/file}}

  • GPG 키로 인증된 커밋 객체 생성:

git commit-tree {{tree}} -m "{{message}}" --gpg-sign

  • 지정된 부모 커밋 객체를 가진 커밋 객체 생성:

git commit-tree {{tree}} -m "{{message}}" -p {{parent_commit_sha}}