This question answers how you could create multiple SVN environments and also projects that reside in the same environment in Bitnami stack: How can I create new project in Trac?
The latest Bitnami Trac stack allows you to create an initial SVN or Git project when you install the software. My question is that how we can create a Git project if we have created an SVN project at installation time.
The documentation says initenv
command should be used like this:
trac-admin <targetdir> initenv [<projectname> <db> [<repostype> <repospath>]]
How do we instruct the trac-admin to create a Git or SVN project? I ran the following command:
trac-admin.exe E:\programming\TracStack\projects\Project3 initenv Project3 sqlite:db/trac.db git E:\programming\TracStack\gitrepos-p3\.git
But I receive the following error:
Warning: couldn't index the default repository.
This can happen for a variety of reasons: wrong repository type,
no appropriate third party library for this repository type,
no actual repository at the specified repository path...
You can nevertheless start using your Trac environment, but
you'll need to check again your trac.ini file and the [trac]
repository_type and repository_path settings.
I am not sure what is the problem.