0

在工作中,我的任务是设置带有前端的 GIT 服务器,我发现 GitlabHQ 看起来很棒。

我已经半成功地安装了它,但是我根本无法推送我的存储库,因为它说我需要推送它们。

因为我之前从未使用过 GitLabHQ,所以首先是:

You should push repository to proceed.
After push you will be able to browse code, commits etc.

添加项目时正常吗?

每次我跑步

git push -u origin master

我明白了,

W access for focus DENIED to rails
(Or there may be no repository at the given path. Did you spell it correctly?)
fatal: The remote end hung up unexpectedly

因为我不能指望团队继续 SSH,所以有人能提供帮助吗?

谢谢。

编辑:

服务器 = Ubuntu Server 11.10 完全更新,我按照以下说明操作:https ://github.com/gitlabhq/gitlabhq/wiki/V2.0-easy-setup-for-ubuntu

4

1 回答 1

1

通过重新运行安装(它必须在第一次静默失败)并在它开始后终止该进程来解决此问题

lsof -p :3000
kill 9 {Whatever the PID was returned from above}

然后重新运行捆绑包(生产与否不同)我使用这个

bundle exec rails s -e production -d
于 2012-07-16T15:17:25.363 回答