Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 GitBlit 的新手,我在 gitblit 中创建了一个新的存储库。我在本地存储库中提交并成功将本地存储库推送到远程 GitBlit 服务器。 当我登录到我的 GitBlit 帐户时,我可以在右侧菜单的“拥有”选项卡下的仪表板中看到我的存储库。 但是当我单击顶部菜单上的存储库选项卡时,我的新存储库在存储库列表中不可见。为什么会这样,我相信这种行为是远程 GitBlit 存储库为空但我已成功推送到 GitBlit 服务器。我错过了什么?
我相信这就是 gitblit 默认的行为方式。 它不会在仪表板存储库列表中公开显示个人存储库~yourrepository/repo.git 。
您可以在 defaults.properties 配置文件中更改它。默认情况下,该值设置为 false
web.includePersonalRepositories = false
如果您希望个人存储库显示在仪表板存储库列表中,请将其更改为 true。
web.includePersonalRepositories = true