I am trying to do something unusual (?) with Git --- storing my multimedia files and photos and some pdf files with Git. I want to keep some meta data with each file (e.g., with a photo: I want to keep some sort of caption with it; with a pdf file: some information about what the file is about for ease of searching later on). In svn you can use svn properties to store metadata about a file (I think). How do I do the same in Git? Haven't been able to find any easy way! git notes looked promising, but it only associates notes with objects (commits). I want notes with individual files.
Update: I do not want to keep a separate file for metadata of files/paths! :-) I want to keep the information with the file/path somehow. Like svn properties (svn propset caption "In the Golden Gate" foo.jpg). To be more precise, when I move files around (git mv path1/file path2/file), I don't want to have to worry about keeping the metadata file up to date... the metadata should move with the file.