mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 21:22:09 +02:00
16 lines
455 B
Markdown
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}}`
|