1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.id/common/git-cherry.md
2025-03-07 13:25:35 +02:00

16 lines
457 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}}`