git, git-*: add and improve Indonesian translation (Part 3) (#11996)

This commit is contained in:
Reinhart Previano Koentjoro
2024-01-06 23:18:51 +07:00
committed by GitHub
parent f54e16e0de
commit 011fccf6d8
10 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# git cat-file
> Dapatkan informasi konten atau jenis dan ukuran untuk objek repositori Git.
> Informasi lebih lanjut: <https://git-scm.com/docs/git-cat-file>.
- Dapatkan ukuran ([s]ize) untuk komit terkini (HEAD), dalam hitungan bita/byte:
`git cat-file -s HEAD`
- Dapatkan [t]ipe yang direferensikan dalam suatu objek Git (seperti blob, tree, komit, atau tag):
`git cat-file -t {{8c442dc3}}`
- Cetak isi objek Git yang diberikan berdasarkan jenisnya, dalam format yang mudah dibaca manusia:
`git cat-file -p {{HEAD~2}}`