vote up 4 vote down star

While programming software stored in a Subversion repo, I often modify some files, then notice that I'd like to do some preparatory change for my main work. E.g. while implementing new functionality, I notice some refactoring which might help me.

In order not to mix two unrelated changes, in these cases I'd like to "stow away" my changes, i.e. revert to the repository version, do some other changes, commit these, then "fetch back" my changes.

git-stash allows to do just that. Is there some way to do this with Subversion, either directly or with some plugin or script. Eclipse plugins would also be fine.

flag

80% accept rate

6 Answers

vote up 1 vote down check

when I've got uncommitted changes from one task in my working copy and I need to switch to another task, I do one of two things:

Check out a new working copy for the second task.

or

Start a branch:

workingcopy$ svn copy CURRENT_URL_OF_WORKING_COPY SOME_BRANCH
workingcopy$ svn switch SOME_BRANCH
workingcopy$ svn commit -m "work in progress"
workingcoyp$ svn switch WHATEVER_I_WAS_WORKING_ON_BEFORE

I have some scripts that help to automate this.

link|flag
this will result in a lot of trash on your subversion server – knittl Oct 12 at 12:36
1  
No, it won't result in "a lot of trash" unless you're a complete slob. The storage required for such a "stash branch" is proportional to the size of the changes committed. Furthermore, you can remove the branch again when it's obsolete so it doesn't clutter up the branches directory. Yes, this is a situation where a distributed system like git really wins and if the OP had phrased his question differently, I would have just answered: "use git already", but he didn't. – bendin Oct 12 at 14:11
@knittl: No, it won't. And what's even more important: It won't result in changes lost as does your suggestion. This, and having another checked out copy of the trunk/same branch, are the only two reliable ways to do this that I know. If you feel uncomfortable with this, just check out another copy and work on it in parallel. – sbi Oct 12 at 14:28
vote up 0 vote down

another option is to copy your current checkout to a new directory and revert all your changes. this way you’ll save the hassle of creating a temporary branch on your server—after all stashing is a local operation, which not everybody should see and can be done quite often.

after committing your hotfix you can update your main working copy and delete your “stashing area”

link|flag
vote up 0 vote down

you can store your current changes with svn diff into a patch file, then revert your working copy:

svn diff > stash.patch
svn revert -r .

after you’ve implemented your preparatory feature, you can then apply your patch with the patch utility:

patch < stash.patch

as others have noted this will not work with svn:properties and tree operations (add, remove, rename files and directories).

binary files could also give problems, i don’t know how patch (or tortoisesvn in this case handles them)

link|flag
1  
This probably doesn't work too well with removed/renamed files, I think. – JesperE Oct 12 at 12:39
it was just a suggestion. also i noted it will not work well with binary files (i guess)—the last time i seriously used subversion, before switching to git was too long ago – knittl Oct 12 at 12:42
I think this is the least time consuming solution, however there is no patch tool on Win32 by default if that's the platform of choice. – ssg Oct 12 at 12:44
@ssg8: iirc tortoiseSVN provides a patch tool (create patch and apply patch in submenu) – knittl Oct 12 at 12:45
See the box titled "Why Not Use Patches Instead?" at svnbook.red-bean.com/en/1.5/… to understand why this is a bad idea. – sbi Oct 12 at 14:28
show 3 more comments
vote up 3 vote down

The easiest way would be to use a temporary branch, like this:

$ svn copy ^/trunk ^/branches/tempbranch
$ svn switch ^/branches/tempbranch
$ svn commit -m "Stashed"
$ svn switch ^/trunk
$ ... hack away in trunk ...
$ svn commit -m "..."
$ svn merge ^/branches/tempbranch .
$ svn rm ^/branches/tempbranch
$ ... continue hacking

This could (and probably should) be put in a script if done on a more regular basis.

link|flag
Why is this voted down, while "solutions" are voted up that don't even work when you have deleted/added files or have changed any properties? Yes, this isn't the easiest thing to do when you do it for the first time, but, besides having another copy checked out to work in parallel, this is the only solution that works in all cases. – sbi Oct 12 at 14:21
Nice use of ^ syntax for repo root (since svn 1.6). Good solution when your repo has trunk/tags/branches at top level. – bendin Oct 13 at 7:32
The URL-abbreviation syntax in 1.6 is a great improvement for the command-line client. See svn.collab.net/repos/svn/… for more info. – JesperE Oct 13 at 8:07
1  
@sleske: yes, you are committing your temporary stash to the server, but the branch itself is deleted. Anyway, I think this is the fastest and most robust way to do it. – JesperE Oct 14 at 13:40
1  
@sleske: SVN is not a distributed VCS, so everything has to be on the server. That's just the way it is. – sbi Oct 14 at 17:07
show 1 more comment
vote up 1 vote down

Obvious way would be using multiple working copies, involving an additional checkout which is a bit expensive.

Alternatively, since Subversion can do branching faster than a physical copy operation, you can "checkin" your current changes to a temporary branch and switch back and forth.

If your changes do not overlap, you can put them in separate changelists to manage multiple checkins.

link|flag
Subversion can do branching pretty fast compared to what? Maybe CVS, but I don't think that it is faster than any DVCSes. – Jason Baker Oct 12 at 12:35
Of course not, what I meant was it could be faster than copying away your changes physically and doing a revert (a la stashing). – ssg Oct 12 at 12:36
2  
Branching in Subversion is a constant-time operation. It does not depend on the size of the repository, hence it is pretty fast. – JesperE Oct 12 at 12:36
branching in subversion depends on the number of files because it will generate copies of the file. so it’s not really a O(1) operation – knittl Oct 12 at 14:25
2  
@knittl: No it doesn't. Checking out a branch depends on the number of files, but creating the branch doesn't. Go and read svnbook.red-bean.com/en/1.5/svn-book.html. – sbi Oct 12 at 14:30
vote up 1 vote down

I have also wanted this feature. I currently use TortoiseSVN.

I have not found a hardfast solution except to export the tree, revert back to repository make my changes and commit, then compare the changes from the exported tree back into my source controlled directory using a tool like Beyond Compare.

Or, another solution might be to branch from the HEAD to another directory, make your changes and the commit. Once you're ready to merge those back to your other working copy, do an update and merge your changes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.