On Wed, Jul 2, 2008 at 8:25 PM, Samuel Bronson <nae...@gmail.com> wrote:
>
> Why is gitorious ignoring the directories that my branches are in?
>
> Keeping in mind that I named my remote "svn", compare
> http://gitorious.org/projects/coq/repos/mainline/logs/master with:
>
> naesten@hydrogen:~/hacking/haskell/coq-git% git branch -r
> svn/InternalExtraction
> svn/ProofIrrelevance
> svn/TypeClasses
[snip]
Looks like it escapes the slashes a bit too eagerly (as in, removing
everything before the last one), I'll roll out a fix today, thanks for
reporting it!
Cheers,
JS
This has been fixed, however that isn't actually your core issue, but
a missunderstanding around how remote vs. local branches work in git
> Keeping in mind that I named my remote "svn", compare
> http://gitorious.org/projects/coq/repos/mainline/logs/master with:
>
> naesten@hydrogen:~/hacking/haskell/coq-git% git branch -r
> svn/InternalExtraction
> svn/ProofIrrelevance
> svn/TypeClasses
> svn/V7
> svn/V7-3-bugfix
> svn/V7-4-bugfix
[snip]
Yes, but that's _your_ (local) remotes. The branches you have pushed
to gitorious isn't namespaced under svn/:
$ GIT_DIR="." git branch -a
InternalExtraction
ProofIrrelevance
TypeClasses
V7
V7-3-bugfix
V7-4-bugfix
V8-0-bugfix
bertot
coq-diff-tool
* master
modules
modules-2
mowgli
mowgli2
proofs
recdef
recriture
revised-theories
tags/V7-0
tags/V7-0beta
tags/V7-0beta2
tags/V7-0beta3-ocaml3-01
tags/V7-0beta4
tags/V7-1
tags/V7-2
tags/V7-3
tags/V7-3-1
tags/V7-4
tags/V8-0
tags/V8-0beta
tags/V8-0cdrom
tags/V8-0pl1
tags/V8-0pl2
tags/V8-0pl3
tags/V8.0-APP
tags/V8.0pl4
tags/V8.1
tags/V8.1-APP
tags/V8.1beta
tags/V8.1gamma
tags/V8.1pl1
tags/V8.1pl2
tags/V8.1pl3
tags/V8.1pre-beta
tags/V8.2alpha
tags/V8.2beta
tags/V8.2beta2
tags/V8.2beta3
tags/before-modules
tags/modules-2-before-grammar
tags/modules-2-branching
tags/modules-2-update
tags/mowgli-before-merge
tags/start
tags/trunk
trunk
v8.1
v8.2
Cheers,
JS