Aktuelle Änderungen
Printable View
Änderungen
Bearbeiten
Hacker > HotSpot > Java > TimBray > Agility > AgileSoftwareEngineering > Parsing > UniCode > Eclipse > AlanKay > JavaNio > CodeGen > CodeGeneration > Hacking > EmacsW32 > Tortoise > TortoiseSVNClear Trail
(weitergeleitet von Main.Tortoise)
Subversion

A Windows GUI-client to
Subversion.
Q&A
What's the difference between 'Update to Revision' and 'Revert changes from this revision'?
-
- 'Update...' brings your working copy back to the specified revision. Trying to commit changes to such updated files will result in conflicts! It's for looking back, not for working from there.
-
- 'Revert...' will - well - revert changes done in the selected revision - even if it is long past. This may result in conflict. But if one performs 'revert...' step by step for each revision back to the revision one acutally wants, you can do so. It does something like
svn merge -rN:N-1 filename
for the selected revision N.
-
- Use 'merge' to rollback over several revisions. [1], [2], [3]
How can I version only a single file (or only few) in a directory without having to import/checkout the whole dir?
-
- You can't. SVN allows versioning on a per-directory basis only.
But you can version only one file (or only few) in a versioned directory (instead of versioning all the files in that dir):
- Set up a repository (create dir, then choose 'create repos here')
- go to the dir that holds the file you want to version
- right-click that dir and select 'checkout'
- choose your (empty) repository
- confirm checkout
- now that dir is versioned but no files from that dir actually are.
- add the file you want to version to the repos.
- finished