Reputation: 189866
Let's say I have a huge SVN repository (don't we all), and I am working on two libraries in separate checkout directories.
Is there a way to atomically commit both of them in a single checkin?
Upvotes: 2
Views: 53
Reputation: 376012
If they are truly separate checkouts, then you can't. But you can checkout your huge repo sparsely, getting only the two libraries you are interested in. Then you can commit your changes to both at once because they will be in a single working tree.
Upvotes: 3