User Tools

Site Tools


eclipse:svn

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
eclipse:svn [2012/07/02 13:23] skipidareclipse:svn [2023/11/01 07:15] (current) – ↷ Page moved from camunda:eclipse:svn to eclipse:svn skipidar
Line 1: Line 1:
 +=== Eclipse Team Synchronizing persepctive ===
  
 +**In the help file for the Subversive plugin there is a describtion for each icon.**
 +
 +== Icons ==
 +
 +|{{http://i.imgur.com/kuKbB.png}} | new File, not under version control| 
 +|{{http://i.imgur.com/d71a9.png}} | file changed since last checkout| 
 +|{{http://i.imgur.com/LJ72q.png}} | conflicted file. someone changed it in the repository, before you did|
 +|{{http://i520.photobucket.com/albums/w327/schajtan/2014-05-06_12-38-50_zpsf29ae7f9.png}} | Tree conflict. The folder in repository was deleted. Solution: {{http://i520.photobucket.com/albums/w327/schajtan/2014-05-06_12-40-01_zpsb565f782.png?300}} |
 +
 +More Icons and their meaning may be dound here: http://www.eclipse.org/subversive/documentation/teamSupport/workspace_synch.php
 +
 +== Glossar ==
 +  * Commit - send from local version to remote repository
 +  * Update - download from remote repository to local
 +
 +
 +==== Clear all .svn subfolders ====
 +
 +Bath to clear svn subs
 +
 +http://stackoverflow.com/questions/4889619/command-to-recursively-remove-all-svn-directories-on-windows
 +
 +Execute this from CMD to del .svn subfolders
 +<code>
 +FOR /F "tokens=*" %G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%G"
 +</code>