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
Post a Comment