curl, docker, git, git-add, git-commit, git-status, npm: add Indonesian translation (#4602)
This commit is contained in:
32
pages.id/common/git-add.md
Normal file
32
pages.id/common/git-add.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# git add
|
||||
|
||||
> Menambahkan file yang diubah ke indeks.
|
||||
> Informasi selengkapnya: <https://git-scm.com/docs/git-add>.
|
||||
|
||||
- Tambahkan file ke indeks:
|
||||
|
||||
`git add {{alamat/ke/file}}`
|
||||
|
||||
- Tambahkan semua file (yang terlacak dan tidak terlacak):
|
||||
|
||||
`git add -A`
|
||||
|
||||
- Hanya tambahkan file yang sudah terlacak:
|
||||
|
||||
`git add -u`
|
||||
|
||||
- Tambahkan juga file yang diabaikan:
|
||||
|
||||
`git add -f`
|
||||
|
||||
- Menambahkan file ke status stage secara interaktif:
|
||||
|
||||
`git add -p`
|
||||
|
||||
- Menambahkan file tertentu ke status stage secara interaktif:
|
||||
|
||||
`git add -p {{alamat/ke/file}}`
|
||||
|
||||
- Stage file secara interaktif:
|
||||
|
||||
`git add -i`
|
Reference in New Issue
Block a user