Changes

Line 127: Line 127:     
=Update your repository=
 
=Update your repository=
To update your local workspace, right click on Eclipse project and select "Pull".
+
To update your local workspace:
 +
 
 +
* With Eclipse IDE:
 +
right click on Eclipse project and select "Pull".
    
If you made some changes into your Eclipse workspace on files that were changed into the GIT remote reference, your GIT client will make a merge automatically.
 
If you made some changes into your Eclipse workspace on files that were changed into the GIT remote reference, your GIT client will make a merge automatically.
Line 135: Line 138:  
If you already have commited some files into your local repository, your workspace will be marked as "Merged".
 
If you already have commited some files into your local repository, your workspace will be marked as "Merged".
 
All you have to do is make a commit to validate your local repository as including your changes and changes made by others.
 
All you have to do is make a commit to validate your local repository as including your changes and changes made by others.
 +
 +
 +
*With the GIT Command Line Client Interface:
 +
<source lang="bash">
 +
git pull
 +
</source>
    
= Commit and publish your changes =
 
= Commit and publish your changes =