Daniel

Results 64 comments of Daniel

Hello @hankache > I'd be more than happy to give you a commit bit if you would like to maintain it in the future. Thank you, I will try to...

Hello, it's already available in [Peter van der Does fork](/petervanderdoes/gitflow) with several other improvements.

> then master will not be there as a remote reference until you run git fetch origin (I think). The git clone operation literally clone the repository as noted in...

Hello, +1 to multiple hotfix branches Sometime, it take long time for a bug to get solved, and if an easier one is opened, I prefer to close it as...

The `require_no_existing_hotfix_branches()` function can be removed with my [pull request to Peter van der Does](/petervanderdoes/gitflow/pull/8) When finishing a hotfix, must be ahead of the production release branch, this require the...

After some tests an thoughts I got the following interface: ``` usage: git flow hotfix [list] [-v] git flow hotfix start [-F] [] git flow hotfix finish [-Fsumpknb] [] git...

Looking at [Peter van der Does code](/petervanderdoes/gitflow/blob/4a645d1/git-flow-hotfix#L247) there is a possible issue with tags: - hotfix branch is merge into production release branch - if user want tag and the...

Hello. It is implemented in gitlow-avh, packaged in my Debian: https://github.com/petervanderdoes/gitflow-avh/blob/develop/git-flow-hotfix#L208 Regards.

I have a similar problem when I want to contribute to launchpad. The clone is OK: ``` $ git clone bzr::lp:ubumirror Cloning into 'ubumirror'... Checking connectivity... done. ``` Now I...

@robru thanks for the explanation. So, if I understand correctly, I can not have one git repository to track several remote bzr branches? As my remote branch was not created,...