Getting Changes from Repository

Git
SVN

You have a server project connected to a repository. This section describes way to get changes made by your colleagues from repository.

Git

In git terminology, this process is known as git pull. Instead of pull, you can do fetch and merge, or fetch and rebase.

Eclipse Plugin - EGit

In Navigator, right click the project and choose TeamPull

External Tool - TortoiseGit
  1. In File Explorer, right click the project and choose TortoiseGitPull.

  2. Choose origin and branch and click OK.

  3. Close the log.

External Tool - Command Line

Switch to local repository and type git pull.

SVN

In svn terminology, this process is known as svn update.

Eclipse Plugin - Subclipse

Right click the project name in Navigator, and choose TeamUpdate to HEAD from the context menu.

External Tool - TortoiseSVN

In File Explorer, right click the project directory and choose SVN Update from context menu.

External tool - Command Line

Move to the project directory and type svn update.