Development:EclipseJalview

From Jalview Wiki
Jump to: navigation, search

Jalview Eclipse IDE installation and setup guide

Jalview IDE is Eclipse + EGit plugin. You'll find detailed EGit installation instructions at http://www.vogella.com/articles/EGit/article.html.

In this guide, we’ll show how to clone Jalview remote code repository in to our local repository. For further details about how to work with Git, please visit specialized documentation. It’s better than reinvent the wheel.

We’ll also suppose you’ve already installed Git for Eclipse (EGit), which is out of the scope of this tutorial.

Creating the local repository

First step is to create a local repository to host our remote repository copy. To do that, follow these steps:

  1. File -> New -> Other

Image001.png

  1. Tell the wizard you want to create a Git repository:

Image003.png

  1. And also where the local repo will be hosted and how you want to call it:

Image004.png

  1. Then click Finish and that’s all.

Remote repository cloning

  1. File -> Import -> Project from GIT and choose URI repo:

Image005.png Image006.png

  1. Then type Jalview Git repo URI:
    https://source.jalview.org/git/jalview.git
  2. Introduce your authentication information (the one you use to access Jira) and leave the rest of the inputs to be filled automatically. After press Finish the following screen will be displayed:

Image008.png

  1. Figure 3. Branch selection fetching.
  2. Once all the branches have been fetched, you’ll have to use the ones you want to clone locally. By default, all branches will be cloned. We’ll recommend leaving this unmodified. Make your selection and click Next.

Image009.png

  1. Specify where you want to clone remote repository at and the click Next:

Image010.png

  1. Wait until the ckeckout has been completed:

Image011.png

  1. Select the wizard you want to use to create the project.

Image012.png

  1. Click Next -> Next -> Finish and your repo will be cloned.

And that's all.