I want to annotate/blame a file in a git repository on a revision using the following command:
git annotate [options] file [revision]
However, the file does not exist in the current repository anymore, but I know that the file was exist in revision f80133a.
git annotate java/org/apache/catalina/valves/CometConnectionManagerValve.java f80133a
fatal: cannot stat path 'java/org/apache/catalina/valves/CometConnectionManagerValve.java': No such file or directory
Is there simple way to annotate a deleted file without checking out the revision f80133a in this situation?