Nitrous.io到github连接

时间:2015-08-25 21:14:02

标签: ruby-on-rails git nitrousio

我正在使用Nitrous.io进行Ruby on Rails开发,并尝试与GitHub连接。我连接到GitHub时遇到此错误。有谁知道这个解决方案是什么?点击后立即发生#34;连接到Github"。我确实尝试了,然后第一次取消,因为我为我的github登录输入了错误的信息。现在,每当我尝试连接到Git时,它都无法正常工作。这就是浏览器中呈现的所有内容......

{"错误":" state_mismatch"," error_description":"提供的状态与Cookie状态不匹配"}

2 个答案:

答案 0 :(得分:2)

当您通过https://www.nitrous.io登录时,目前存在连接到Github的问题。

尝试通过域https://pro.nitrous.io/登录,然后从那里connect to Github

答案 1 :(得分:0)

我猜你添加了错误的遥控器。您必须正确删除并设置它:git remote remove origin。你不正确地设置了什么信息?

以下是Nitrous.io的步骤:

首先添加SSH密钥:https://community.nitrous.io/docs/connect-to-github。然后在您的github帐户(https://github.com/new)上创建一个repo。然后运行git init,然后

$ git remote add origin https://github.com/user/repo.git
# Set a new remote: your remote. 

$ git remote -v
# Verify new remote
# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)

$ git add .
$ git commit -m "initial commit"
$ git push origin master