Cara menambah dan melakukan file ke repositori git

#Make a change and Commit the changed files with a message:
git commit -a -m "Commit message here"


#commit desired files with desired message:
git commit -m "Commit message here"
DON-PECH