2020-10-12 22:51:19 +01:00
|
|
|
# git add
|
|
|
|
|
|
|
|
> Menambahkan file yang diubah ke indeks.
|
2021-01-15 17:24:49 +00:00
|
|
|
> Informasi lebih lanjut: <https://git-scm.com/docs/git-add>.
|
2020-10-12 22:51:19 +01:00
|
|
|
|
|
|
|
- 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`
|