How to clone CVS repository with empty directories

Viewed 2061

I convert a CVS repository to a Git repository with the following command:

$ git cvsimport -vaikd :pserver:thillaiselvan@192.168.1.11:2401/ -C IVR-GUI GIT

However, Git ignores the empty directories in the CVS repository. But I want the repository to be cloned including those empty repositories. How can I make Git to do that?

1 Answers
Related