bazaar

How can I mirror a project hosted on launchpad on github?

≯℡__Kan透↙ 提交于 2019-12-02 18:08:33
I want to contribute actively to a project that is hosted on Launchpad. I'm much more comfortable with GitHub, and would like to continue to use it if possible. Would I be able to mirror the bzr repository on github? If it's possible, how could I set this up? You could try some kind of git-bzr bridge like this git-bzr git-bzr script: This script allows you to add bazaar repositories as git branches in your git repository. After that, you can fetch the Bazaar repo, make some changes, and push it back into Bazaar. The reverse is possible, meaning you can clone a bzr repo and push to your GitHub

Bazaar merge questions

▼魔方 西西 提交于 2019-12-02 06:32:28
Is it possible to merge only specific files and just copy the unselected files? I.E. i want to resolve conflict in all files except *.hex *.s19 and *.out. in those files i want to take the .THIS file always (for example) How i configure bazaar merge to be external and the builtin tool? i want to use the bcompare as my merge tool and not just as 4-way diff to resolve conflicts i'm using beyond comapre software for resolving conflicts after merge. Today i simply run the bcompare.exe and then press launch in the resolve conflicts menu. can i run it with any parameters that i want? (i.E choose the

What DVCS support Unicode filenames?

对着背影说爱祢 提交于 2019-11-30 11:44:21
问题 I'm interested in trying out distributed version control systems. git sounds promising, but I saw a note somewhere for the Windows port of git that says "don't use non-ASCII filenames". I can't find that now, but there is this link. It's put me off git for now, but I don't know if the other options are any better. Support for non-ASCII filenames is essential for my Japanese company. I'm looking for one that internally stores filenames as Unicode, not a platform-dependent encoding which would

Submit bug fixes on launchpad through patches or merge proposals?

馋奶兔 提交于 2019-11-30 09:07:36
I'm new to Launchpad and Bazaar , and I'm trying to figure out what the best way is to submit bug fixes. I'm using some reasonably popular open-source software that's hosted on Launchpad, but it's not very stable. I've created my own branch of the project to stabilize it and apply just the bug fixes we need without adding other changes from ongoing development. When I file bugs and then figure out how to fix them myself, I push the fix to our stable branch. How should I publish the fix back to the main project? I could create a patch file and attach it to the bug, or I could propose a merge

What DVCS support Unicode filenames?

白昼怎懂夜的黑 提交于 2019-11-30 00:07:51
I'm interested in trying out distributed version control systems. git sounds promising, but I saw a note somewhere for the Windows port of git that says "don't use non-ASCII filenames". I can't find that now, but there is this link . It's put me off git for now, but I don't know if the other options are any better. Support for non-ASCII filenames is essential for my Japanese company. I'm looking for one that internally stores filenames as Unicode, not a platform-dependent encoding which would cause endless grief. So: What DVCS support Unicode filenames? In both Windows and Linux? Ideally, with

Bazaar and $Id$

一笑奈何 提交于 2019-11-29 15:30:27
Most my sources are in subversion and I use '$Id$' to add revision information to those sources. Then I can easily check what sources were used (e.g.. --version option shows that info). Now I'm going to use bazaar and I can't find such a functionality. Is there any equivalent of svn '$Id$' in bazaar? Having automatically generated Id tags that show a sensible version number is impossible to do with DSCM tools like Bazaar because everybody’s line of development can be different from all others. So somebody could refer to version “1.41” of a file but your version “1.41” of that file is different

Pros and cons of different branching models in DVCS

独自空忆成欢 提交于 2019-11-29 07:49:46
问题 The Big Three of distributed version control (Git, Bazaar, and Mercurial) each treat branching fairly differently. In Bazaar, for example, branches are separate repos (actually, divergent copies of the parent repo); on your file system, different branches live in different directories. In Git, on the other hand, you can have multiple branches existing in the same repo (and therefore in the same directory on your file system). Mercurial supports both behaviors, the latter with named branches.

Git GUI like Bzr Explorer but for Git?

给你一囗甜甜゛ 提交于 2019-11-29 06:55:17
What GUI's are there for GIT that are like Bazaar Explorer? Preferably for Linux. (source: ubuntugeek.com ) Would be great to include or link to screenshots in the answers. If you could do each app as one answer, they could be individually voted on. Install bzr-git plugin for bzr and then simply use Bazaar Explorer to work with your git repositories. 来源: https://stackoverflow.com/questions/6009280/git-gui-like-bzr-explorer-but-for-git

Should I look at version control systems beyond Subversion?

时光怂恿深爱的人放手 提交于 2019-11-28 21:02:55
问题 Within the last year I have become addicted to subversion. I am an only developer and I also work on a few of my own projects. With SVN its really easy to manage everything - and because it is hosted on an online server though HTTPS I can access my code from anywhere. It is also great for deploying code to our production/development servers. My point is that it does everything that I need it to do and has never failed me. Is there anything better? Am I missing some feature in another product

Bazaar and $Id$

让人想犯罪 __ 提交于 2019-11-28 09:15:00
问题 Most my sources are in subversion and I use '$Id$' to add revision information to those sources. Then I can easily check what sources were used (e.g.. --version option shows that info). Now I'm going to use bazaar and I can't find such a functionality. Is there any equivalent of svn '$Id$' in bazaar? 回答1: Having automatically generated Id tags that show a sensible version number is impossible to do with DSCM tools like Bazaar because everybody’s line of development can be different from all