Hi Jeff,

Welcome!  I would also add to Tim's response:

On Sun, Sep 23, 2012 at 3:21 PM, Tim Williams <[email protected]> wrote:

> On Sun, Sep 23, 2012 at 1:23 PM, Jeffrey John <[email protected]>
> wrote:
> > Hi All,
> >
> > Can you please tell me how to clone the files from the git repo to my
> local
> > ? Also dont I be needing a local database to run/test the build? Please
> > help me around with the initial setup.
>
> Hi Jeff,
> Welcome to Blur:)  You should be able to find the cloning instructions
> here:
> http://incubator.apache.org/blur/get_involved.html
>
> ..but essentially:
> git clone https://git-wip-us.apache.org/repos/asf/incubator-blur.git


# Non-committers developers should use the below url (without the "s" in
"https")
# This one will NOT prompt you for credentials.
git clone http://git-wip-us.apache.org/repos/asf/incubator-blur.git

Also some other useful git commands if you are new to git.

# List your branches
git branch

# List the remote branches
git branch -r

# List all branches (remote and local)
git branch -a

# Checkout a remote branch where 0.1.3-local is the local name
and origin/0.1.3 is the remote name.
git checkout -b 0.1.3-local origin/0.1.3

After you get past all the git stuff, you can use maven to build the entire
project.

# Change directory to src/ you should see a pom.xml file there.
cd src/

# Then run mvn install, this will compile everything and runs all the tests.
mvn install

Note:  Currently if you are running java 7 the blur-jdbc project will not
compile.  We should make a jira issue for this and resolve it.

Also the 0.1.3 branch is considered the most stable version, and we about
to start making larger changes on the master but the branches (master and
0.1.3) are still pretty close at this point.  So just beware that the
current documentation on github applies to the 0.1.3 branch.


>
> We're just getting started in incubation and haven't migrated the
> getting started guide yet so for now you'll find the old getting
> started guide helpful:
>
> https://github.com/nearinfinity/blur
>
> Thanks,
> --tim
>

If you have any trouble with these instructions please let us know.  This
thread with help to drive a "Getting Started" wiki page.

Again welcome!

Reply via email to