GitlabHQ - W 因 Rails 被拒绝

发布于 2025-01-05 15:20:40 字数 820 浏览 1 评论 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

At work I've been tasked with setting up out GIT server with a front end and I found GitlabHQ which looks amazing.

I've installed it all semi-successfully but I cannot push my repos at all as it says I need to push them.

Since I've never used GitLabHQ before first is:

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

Normal when adding projects?

and every-time I run

git push -u origin master

I get this,

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

is anyone able to help since I can't expect the team to keep SSH'ing?

Thanks.

EDIT:

Server = Ubuntu Server 11.10 fully updated and I followed these instructions: https://github.com/gitlabhq/gitlabhq/wiki/V2.0-easy-setup-for-ubuntu

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冰雪梦之恋 2025-01-12 15:20:40

这是通过重新运行安装(它必须第一次无提示地失败)并在进程启动后终止该进程来解决的,

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

然后重新运行捆绑包(生产与否之间存在差异)我使用这个

bundle exec rails s -e production -d

This was fixed by re-running the install (It must have failed silently the first time) and killing the process once it had started with

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

Then re-running the bundle (differs between production or not) I use this

bundle exec rails s -e production -d
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文