--- Derrek Leute <[EMAIL PROTECTED]> wrote: > > Is there a tool that will let me make a queue of cvs > commits while I am > unable to connect to the repository? The goal is to > take my laptop on > trips with an up to date copy of my projects. I > don't want to make one > large commit with one simple message. I prefer to > make many smaller > commits with messages specifying exactly what has > changed and why. > > I *could* run a mirrored repository on my laptop and > then merge that with > the primary repository when I return. But I don't > know how to do that > safely while still maintaining commit messages from > the laptops > repository. (assuming that others are working on the > primary repository > while I am away. if it were just me, it would be > simple)
AFAIK, no. What you can do is: 1. Checkout a your projects into a sandbox intended for reading only. 2. For each task you undertake, make a copy of either the read-only sandbox or of another sandbox. 3. When you have a connection to the repo, checkin (ie update then checkin) the sandboxes making sure that you checkin in the order you made the copies. HTH, Noel __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
