mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* contributing-guides, common/*: revise subcommand mention notices Over the past commits it is more preferable to use this new notice format to follow the same passive sentence structure as well as removing any first-person nouns, i.e. "kami" ("we"). * adb, pip: refresh Indonesian translations
29 lines
708 B
Markdown
29 lines
708 B
Markdown
# git
|
|
|
|
> Sistem kontrol versi terdistribusi.
|
|
> Beberapa subperintah seperti `commit`, `add`, `branch`, `checkout`, `push`, dsb. mempunyai dokumentasi terpisah.
|
|
> Informasi lebih lanjut: <https://git-scm.com/>.
|
|
|
|
- Jalankan suatu subperintah Git:
|
|
|
|
`git {{subperintah}}`
|
|
|
|
- Jalankan suatu subperintah terhadap suatu direktori repositori:
|
|
|
|
`git -C {{jalan/menuju/repo}} {{subperintah}}`
|
|
|
|
- Jalankan suatu subperintah dengan set konfigurasi/pengaturan tertentu:
|
|
|
|
`git -c '{{kunci.config}}={{nilai}}' {{subperintah}}`
|
|
|
|
- Tampilkan bantuan umum:
|
|
|
|
`git --help`
|
|
|
|
- Tampilkan bantuan pada subperintah Git (seperti `clone`,` add`, `push`, `log`, dll.):
|
|
|
|
`git help {{subcommand}}`
|
|
|
|
- Periksa versi Git:
|
|
|
|
`git --version`
|