J'ai essayé la commande suivante:
git commit path/to/my/file.ext -m 'my notes'
Recevez une erreur dans git version 1.5.2.1:
error: pathspec '-m' did not match any file(s) known to git.
error: pathspec 'MY MESSAGE' did not match any file(s) known to git.
Cette syntaxe est-elle incorrecte pour les validations de fichiers ou de répertoires uniques?
RÉPONSE: Des arguments étaient attendus dans cet ordre ...
git commit -m 'my notes' path/to/my/file.ext
MISE À JOUR: ce n'est plus strict :)