Popping out of the bazaar in Github

I am developing code in Bazaar and want to publish it on Github. What is the best way to achieve this?

This is normal if the solution provides only a way to insert only one branch into the Bazaar repository on Github.

+5
source share
3 answers

Use the bzr-git plugin , which should be associated with the latest versions of bzr.

+2
source

As in the case of Bazaar 2.5.1, the correct syntax for bzr dpush (part of the plugin gitinstalled by default on Windows):

bzr dpush https://github.com/myUserName/myProject.git/,branch=master

URL- "HTTPS--URL", github ( , "URL- HTTPS", ).

, . , authentication.conf ( HOME bzr - "%appdata%\bazaar\2.0" Windows). ( ), * *.

:

[github.com]
scheme=https
host=github.com
user=myUserName
password=myPassword
+1

Use git-bzr-ng (bidirectional bridge between git and bzr).

-1
source

All Articles