我按照此处的说明创建了一个新分支。我从克隆了存储库的 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 的新手。请有人帮忙。谢谢