Have I deleted some branches from Git master?



On 05/06/2013 08:38 PM, Robert Dodier wrote:
> On 2013-05-06, James Cloos <cloos at jhcloos.com> wrote:
> 
>> W/o having to spend the bandwidth to re-clone the repo, if one goes to
>> sf.net/projects/maxima, hits Git and then Code, one sees a list of all
>> of the branches in the repo at sf.
> 
>> The current branches are:
>>
>>     branch-5_25
>>     branch-5_26
>>     branch-5_27
>>     branch-5_28
>>     branch-5_29
>>     branch-5_30
>>     laplace-hstep-branch
>>     master
>>     multiple-texinfo-dirs-branch
>>     parse-info
> 
>  From what does sf.net generate that list? It is different from the list
> shown by git ls-remote, which does not show any 5.29 or 5.30 branches or
> tags, nor parse-info, nor laplace-hstep-branch. Same with
> git branch --list --remote.
> 

I'm not sure if I should do anything special first, but for what it's worth
here is what I get after a git pull:

$ git ls-remote --heads | awk '{print $2}'
>From ssh://kjak at git.code.sf.net/p/maxima/code
refs/heads/branch-5_25
refs/heads/branch-5_26
refs/heads/branch-5_27
refs/heads/branch-5_28
refs/heads/branch-5_29
refs/heads/branch-5_30
refs/heads/laplace-hstep-branch
refs/heads/master
refs/heads/multiple-texinfo-dirs-branch
refs/heads/parse-info

$ git branch -r
  origin/HEAD -> origin/master
  origin/branch-5_25
  origin/branch-5_26
  origin/branch-5_27
  origin/branch-5_28
  origin/branch-5_29
  origin/branch-5_30
  origin/laplace-hstep-branch
  origin/master
  origin/multiple-texinfo-dirs-branch
  origin/parse-info


Have you tried doing a fresh clone of the repo and trying it out there?

Cheers,
Kris Katterjohn