1

I work with Eclipse and Git.

From command line I did

git checkout development
git fetch
git pull

After this I create a new branch

git checkout -b <new branch>

After this, I went to git package explorer in eclipse. I am in the new branch, but I don't have the changes remote repository

enter image description here

This is the remote repository

enter image description here

How can I refresh package explorer with remote repository?

Carlota
  • 1,239
  • 3
  • 29
  • 59

1 Answers1

0

I'm not entirely sure of you want to do, but i think you are searching for a rebase. There is a link of a similar question : Git merge master into feature branch

  • I want to see in eclipse project explorer in my local branch the remote repository. I dont't see the same in project explorer than remote repository. I want to refresh my new branch – Carlota Jul 31 '19 at 06:48
  • okey, so you just need to refresh package explorer. well, maybe this can be helpful: https://github.com/samthiriot/genlab/wiki/refresh-the-eclipse-workspace-after-pulling-changes-from-git – Jorge el humilde Jul 31 '19 at 06:54