git ajouter un fichier au dernier engagement
git add the_left_out_file
git commit --amend --no-edit
Difficult Dugong
git add the_left_out_file
git commit --amend --no-edit
You can use `git stash` command to add files without commit.
And after that you can use `git stash pop` to pop out stash files.