CE Codebase: Where's the MAIA branch?

I tried checking out the CE codebase with the following command:  git clone -b maia git://git.jetbrains.org/idea/community.git idea

This is due to the instructions on the http://www.jetbrains.org/pages/viewpage.action?pageId=983225 page indicating the 9.0.x code is in the "maia" branch.  I get an error stating "warning: Remote branch maia not found in upstream origin, using HEAD instead".

Am I missing something?  I'm a total GIT n00b.


Here's all of the output from running the clone command:

C:\projects>git clone -b maia git://git.jetbrains.org/idea/community.git idea
Initialized empty Git repository in C:/projects/idea/.git/
remote: Counting objects: 813127, done.
remote: Compressing objects: 100% (164402/164402), done.
remote: Total 813127 (delta 540900), reused 751181 (delta 497705)
Receiving objects: 100% (813127/813127), 630.00 MiB | 1.77 MiB/s, done.
Resolving deltas: 100% (540900/540900), done.
warning: Remote branch maia not found in upstream origin, using HEAD instead

0
8 comments

Hello Brad,

Sorry for the confusion, our mirroring script didn't include the maia branch.
Now it's included and will be available.

I tried checking out the CE codebase with the following command:  git
clone -b maia git://git.jetbrains.org/idea/community.git idea

This is due to the instructions on the
http://www.jetbrains.org/pages/viewpage.action?pageId=983225 page
indicating the 9.0.x code is in the "maia" branch.  I get an error
stating "warning: Remote branch maia not found in upstream origin,
using HEAD instead".

Am I missing something?  I'm a total GIT n00b.

Here's all of the output from running the clone command:

C:\projects>git clone -b maia
git://git.jetbrains.org/idea/community.git idea
Initialized empty Git repository in C:/projects/idea/.git/
remote: Counting objects: 813127, done.
remote: Compressing objects: 100% (164402/164402), done.
remote: Total 813127 (delta 540900), reused 751181 (delta 497705)
Receiving objects: 100% (813127/813127), 630.00 MiB | 1.77 MiB/s,
done.
Resolving deltas: 100% (540900/540900), done.
warning: Remote branch maia not found in upstream origin, using HEAD
instead
---
Original message URL:
http://www.jetbrains.net/devnet/message/5261181#5261181

--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0

Thanks, I see it now.

0
Avatar
Carl Letourneau

Is this possible for the git HTTP protocol to be available also? I'm having problem using git through my corporate proxy (NTLM authentication).

I would like to be able to do something like this :

git clone -b maia http://git.jetbrains.org/idea/community.git idea

Thanks!

Carl

0

Unfortunately we're unable to provide HTTP access to the git repository for performance reasons. If you can't checkout using the git protocol,
the other option is to download a tarball.


0

It shouldn't be hard for a user , not JetBrains, to setup an unofficial mirror using github or maybe code.google.com if they support git.

-Rob

0

Hello Dmitry, where is the tarball you're talking about please ?

0

Hello Gilles,

Hello Dmitry, where is the tarball you're talking about please ?


http://www.jetbrains.org/display/IJOS/Download

--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0

I am trying the same thing but always receive the content from HEAD (Idea-X EAP) instead of the "maia" branch. The only difference is that I don't see the warning message and that my git client requires an -o parameter (origin) instead of -b (branch)

Here my git command:
git clone -o maia git://git.jetbrains.org/idea/community.git idea

What am i doing wrong?

0

Please sign in to leave a comment.