Re: [RFC] Shelving and Checkpointing
From: Julian Foad <julianfoad_at_apache.org>
Date: Wed, 12 Jul 2017 09:18:26 +0100
I committed an initial prototype for shelving on the "shelve-checkpoint"
Here is the help output:
1. Shelve as NAME the local changes in the given PATHs.
$ svn unshelve --help
]]]
Here is an example session:
$ mkdir doc; echo hello > doc/hello.txt; echo config > config
$ svn add --force .; svn ci -q -m ""
$ # start making some changes to docs
$ echo new > doc/new.txt; svn add doc/new.txt
$ echo more >> config
$ svn st
$ # shelve these documentation changes
$ svn shelve docs .
$ svn st
$ svn shelve --list
$ # work on a quick fix and commit it
$ echo Hello > doc/hello.txt
$ svn ci -q -m "Fix capitalization."
$ # unshelve to continue work on docs
$ svn unshelve docs
$ svn st
$ svn shelve --list
]]]
If you have a chance to try it yourself, I'd love to hear your first
- Julian
> References:
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.