Dapatkan daftar file yang ingin Anda komit
$ git status
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: file1
modified: file2
modified: file3
modified: file4
Tambahkan file ke pementasan
$ git add file1 file2
Periksa untuk melihat apa yang Anda lakukan
$ git status
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: file1
modified: file2
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: file3
modified: file4
Komit file dengan pesan komit
$ git commit -m "Fixed files 1 and 2"
Jika Anda secara tidak sengaja melakukan file yang salah
$ git reset --soft HEAD~1
Jika Anda ingin menghapus stage file dan mulai lagi dari awal
$ git reset
Unstaged changes after reset:
M file1
M file2
M file3
M file4