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).
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 new_repo/ trunk new_repo/ trunk
bzr push /path/to/
bzr bind /path/to/
I'd really like this to be:
bzr init-repo --no-trees /path/to/new_repo new_repo/ trunk
bzr push --bind /path/to/
I guess I could use:
bzr init-repo --no-trees /path/to/new_repo new_repo/ trunk
bzr push /path/to/
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).