version control - git fetch changes from a local branch -


i have git problem local branch , don't know how solve it. after reading topics on stack overflow thought found solution git produces error don't understand.

i have master branch few commits behind development branch. since want make bugfix on master, made feature branch , want these changes development branch. thought switch development branch , fetch new featurebranch getting message featurebranch no repository...

$ git fetch clusters fatal: 'clusters' not appear git repository fatal: not read remote repository.  please make sure have correct access rights , repository exists. $ git branch   clusters * develop   master   plotlydev   protrna_plot   release010 

so how changes within featurebranch development branch?

fetch retrieves changes remote. you're thinking of merge

git checkout develop git merge feature 

Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -