1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages.id/common/git-cherry.md
2024-10-13 10:26:47 +02:00

16 lines
455 B
Markdown

# git cherry
> Cari komit yang belum dimasukkan kepada hulu (upstream).
> Informasi lebih lanjut: <https://git-scm.com/docs/git-cherry>.
- Lihat daftar komit (beserta pesannya) dengan komit-komit serupa pada hulu (upstream):
`git cherry {{-v|--verbose}}`
- Gunakan sumber hulu dan cabang topik yang lain:
`git cherry {{origin}} {{topik}}`
- Tampilkan hanya komit yang muncul hingga komit ini:
`git cherry {{origin}} {{topic}} {{hingga_komit_ini}}`