diff --git a/plugins/appwizard/appwizardplugin.cpp b/plugins/appwizard/appwizardplugin.cpp --- a/plugins/appwizard/appwizardplugin.cpp +++ b/plugins/appwizard/appwizardplugin.cpp @@ -403,6 +403,10 @@ KSharedConfigPtr developerCfg = KSharedConfig::openConfig(developerProjectFileName, KConfig::SimpleConfig); KConfigGroup developerProjectGroup = developerCfg->group("Project"); developerProjectGroup.writeEntry("VersionControlSupport", info.vcsPluginName); + developerProjectGroup.writeEntry("RepositoryServer", info.repository.repositoryServer()); + developerProjectGroup.writeEntry("RepositoryUser", info.repository.userData().toString()); + developerProjectGroup.writeEntry("RepositoryBranch", info.repository.repositoryBranch()); + developerProjectGroup.writeEntry("RepositoryPath", info.repository.repositoryPath()); developerProjectGroup.sync(); developerCfg->sync();