Ho provato il seguente comando:
git commit path/to/my/file.ext -m 'my notes'
Ricevi un errore nella versione 1.5.2.1 di git:
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.
È una sintassi errata per i singoli file o le commit della directory?
RISPOSTA: gli argomenti erano attesi in questo ordine ...
git commit -m 'my notes' path/to/my/file.ext
AGGIORNAMENTO: non è più severo :)