Comment 7 for bug 98644

Revision history for this message
Dr Al (abudden) wrote :

I would like there to be an easier way to do this as well. I often do:

    bzr init-repo --no-trees /path/to/new_repo
    bzr push /path/to/new_repo/trunk
    bzr bind /path/to/new_repo/trunk

I'd really like this to be:

    bzr init-repo --no-trees /path/to/new_repo
    bzr push --bind /path/to/new_repo/trunk

I guess I could use:

    bzr init-repo --no-trees /path/to/new_repo
    bzr push /path/to/new_repo/trunk
    bzr bind :push

BUT, I know that if I use this method, one day I'll do 'bzr bind :push' on a subsequent push and it'll bind to an old location (as I probably won't have remembered to do --remember).