0

我按照此处的说明创建了一个新分支。我从克隆了存储库的 EC2 实例中执行了以下命令:

$ git branch
  * master
$ git branch solr
$ git checkout solr
$ git branch
   master
  * solr
$ git add .
$ git commit -m "adding a change from the feature branch"
$ git checkout master
$ git push origin solr

但是 push 命令给了我以下错误:

fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

我是 git 的新手。请有人帮忙。谢谢

4

1 回答 1

2

遥控器不见了。固定使用:

git remote add origin https://bitbucket.org/usr/repo
于 2013-11-07T11:18:01.860 回答