Question about features
Daniel Carrera
dcarrera at gmail.com
Thu Nov 5 16:59:42 GMT 2009
Gordon Tyler wrote:
> Honestly, I think you're better off using rsync for something like that.
> There's nothing preventing you from using rsync AND Bazaar. For example:
>
> ...
>
> My point is that needing to transfer what you're currently working on to
> your test server has nothing to do with your VCS.
I agree. I plan to use rsync, except that I must be mindful to send
different branches to different directories. For example:
** BAD: **
cd ../feature-A/
... hack ...
rsync avz -e ssh daniel at example.com:test/ . # So far so good.
cd ../feature-B/
... hack ...
rsync avz -e ssh daniel at example.com:test/ . # OOPS.
** GOOD: **
cd ../feature-A/
... hack ...
rsync avz -e ssh daniel at example.com:test/feature-A/ .
cd ../feature-B/
... hack ...
rsync avz -e ssh daniel at example.com:test/feature-B/ .
Cheers,
Daniel.
More information about the bazaar
mailing list