git从本地分支获取更改

时间:2016-07-11 11:57:14

标签: git version-control

我对本地分支有git问题,我不知道如何解决它。在阅读了关于堆栈溢出的一些主题后,我认为我找到了解决方案,但git产生了一个我不理解的错误。

我有一个master分支,这是我development分支后面的一些提交。由于我想在master上修改错误,我创建了一个feature branch,我希望将这些更改添加到我的development分支中。所以我想我切换到development分支,我可以fetch这个新的featurebranch,但我收到的消息是featurebranch没有存储库...

$ git fetch clusters
fatal: 'clusters' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
$ git branch
  clusters
* develop
  master
  plotlydev
  protrna_plot
  release010

那么如何将featurebranch内的更改导入我的development分支?

1 个答案:

答案 0 :(得分:2)

fetch从远程检索更改。你在考虑merge

git checkout develop
git merge feature