次のコマンドを試しました:
git commit path/to/my/file.ext -m 'my notes'
Git バージョン 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.
単一のファイルまたはディレクトリのコミットに対する構文が間違っていますか?
ベストアンサー1
引数の順序が間違っています。 を試すgit commit -m 'my notes' path/to/my/file.ext
か、より明確にしたい場合は としてくださいgit commit -m 'my notes' -- path/to/my/file.ext
。
ちなみに、Git v1.5.2.1 は 4.5 年前のものです。新しいバージョンに更新することをお勧めします (現在のリリースは 1.7.8.3 です)。