Directory structure

Asked by Peter Balazovic

Guys,

i want to create this directory structure under Bazaar

../code/STABLE (pull from QA)
../code/QA (branched from STABLE, pull from DEV)
../code/DEV (branched from STABLE or QA)

I am trying to do it but with errors. any correct way to do it?

Thanks
peter

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
Vincent Ladeuil
Solved:
Last query:
Last reply:
Revision history for this message
Martin Pool (mbp) said :
#1

What error are you getting?

Martin

Revision history for this message
Peter Balazovic (peter-balazovic) said :
#2

I am using Bazaar Explorer 1.1.3 and I created each directory 'STABLE', 'DEV', 'QA' as feature branches.

Run command: bzr branch /code/STABLE/trunk /code/DEV/ver04
error removing pending lock: Unprintable exception DirectoryNotEmpty: dict={'path': u'/code/DEV/ver04/.bzr/branch/lock/jh6rv57u73.tmp', '_preformatted_string': None, 'extra': ": [Error 145] Adres\xe1\xf8 nen\xed pr\xe1zdn: u'/code/DEV/ver04/.bzr/branch/lock/jh6rv57u73.tmp'"}, fmt='Directory not empty: "%(path)s"%(extra)s', error=UnicodeDecodeError('ascii', ": [Error 145] Adres\xe1\xf8 nen\xed pr\xe1zdn: u'/code/DEV/ver04/.bzr/branch/lock/jh6rv57u73.tmp'", 19, 20, 'ordinal not in range(128)')
bzr: ERROR: [Error 145] : u'/code/DEV/ver04/.bzr/checkout/limbo/new-2/'

Revision history for this message
Peter Balazovic (peter-balazovic) said :
#3

In Bazaar Explorer under working tree ..\STABLE\trunk I'll click 'Pull'

Run command: bzr pull ..\code\DEV\ver06
bzr: ERROR: [Error 5]

Revision history for this message
Best Vincent Ladeuil (vila) said :
#4

>>>>> Peter Balazovic <email address hidden> writes:

    > New question #157206 on Bazaar:
    > https://answers.launchpad.net/bzr/+question/157206

    > Guys,

    > i want to create this directory structure under Bazaar

    > ../code/STABLE (pull from QA)

Ok.

    > ../code/QA (branched from STABLE, pull from DEV)

pull --overwrite or merge here may be ?

Not at revisions will be QA ok right ? So you'll have to either get rid
of them and branch again or use 'pull --overwrite' to erase your current
content.

    > ../code/DEV (branched from STABLE or QA)

STABLE *OR* QA ? Not all revisions are QA'ed ?

    > I am trying to do it but with errors. any correct way to do it?

What kind of errors ?

Revision history for this message
Peter Balazovic (peter-balazovic) said :
#5
Revision history for this message
Peter Balazovic (peter-balazovic) said :
#6

Thanks Vincent Ladeuil, that solved my question.