我对本地分支有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
分支?
答案 0 :(得分:2)
fetch
从远程检索更改。你在考虑merge
git checkout develop
git merge feature