If you have already executed your Commit and you Forgot to Add something you can just Change it executing:
commit --amend
Example:
Your already executed:
$git commit -m “your message”
You want to add something:
$git add something
Now to amend the last commit:
$git –amend