mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 16:42:10 +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
708 B
708 B
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