无法对新创建的分支执行“git push”

时间:2013-11-07 10:20:17

标签: git git-push

我按照说明here创建了一个新分支。我从EC2实例执行了以下命令,我已经克隆了repo:

$ 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的新手。请有人帮忙。 感谢

1 个答案:

答案 0 :(得分:2)

遥控器丢失了。修正使用:

git remote add origin https://bitbucket.org/usr/repo