Ruby on Rails教程第1.4.3章(关于bitbucket的部分)

时间:2015-02-05 20:11:37

标签: ruby-on-rails railstutorial.org

我在设置bitbucket repo时遇到了一些麻烦

humantoast@rails-tutorial:~/workspace/hello_app (master) $ git remote add origin git@bitbucket.org:HumanToast/hello_app.git                                                                                                                          
fatal: remote origin already exists.

humantoast@rails-tutorial:~/workspace/hello_app (master) $ git push -u origin --all                                                                                                                                                                  
conq: repository does not exist.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

1 个答案:

答案 0 :(得分:2)

我只是想说我尝试了以下内容,似乎已经奏效了。请注意'< 用户名>'是指您的用户名。如果在编号列表中,请替换< 用户名>用你的用户名。

在终端输入以下编号的命令。 ' 结果'是命令输入后终端显示的输出

  1. git remote -v
  2. 结果

      

    origin git@bucket.org:/hello_app.git(fetch)   来源git@bucket.org:/hello_app.git(推)

    1. git remote rm origin
    2. 结果

      终端无输出

      1. git remote add origin git@bitbucket.org:< 用户名> /hello_app.git
      2. git push -u origin --all#第一次推出repo及其refs
      3. 结果(请注意,下面的3个点是指由于其可能包含机密信息而被排除在终端上的输出)

          

        。   。   。   您确定要继续连接(是/否)吗?

        1. 结果

            

          。   。   。   要git@bitbucket.org:< 用户名> /hello_app.git

               

          [new branch] master - >主   分支主站设置为从原点跟踪远程分支主站。

          这似乎已经成功了。我在书中这么早就浪费了一天。