Getting Changes from Repository
Git |
SVN |
You have a server project connected to a repository. This section describes a way to get changes made by your colleagues from the 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 →
External Tool - TortoiseGit
In File Explorer, right click the project and choose → .
Choose origin and branch and click
.Close the log.
External Tool - Command Line
Switch to the 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 → from the context menu.
External Tool - TortoiseSVN
In File Explorer, right click the project directory and choose SVN Update from the context menu.
External tool - Command Line
Move to the project directory and type svn update
.