Search code examples
bazaar

unlink repository from central server in bazaar


Every time I commit with bazaar, it contacts my remote repository (the one I got the code from). I want to commit locally, because the development machine I'm on is offline. Of course there's the --local option, but I would like just to remove the linkage between the remote server and the repository branch. How can I do it?

Related question: once I get back online with the repo, what is the procedure to submit the changes to the central repository ?


Solution

  • bzr unbind
    

    See http://doc.bazaar-vcs.org/latest/en/user-guide/using_checkouts.html

    bzr bind [LOCATION]
    

    converts the local branch into a checkout of the central repository.