You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by Apache Wiki <wi...@apache.org> on 2014/03/21 02:58:18 UTC

[Tajo Wiki] Update of "HowToContribute" by JihoonSon

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tajo Wiki" for change notification.

The "HowToContribute" page has been changed by JihoonSon:
https://wiki.apache.org/tajo/HowToContribute?action=diff&rev1=9&rev2=10

  == Getting the source code ==
  First of all, you need the Tajo source code. The official location for Tajo is the Apache Git repository. Most development is done on the master branch. You can get the source of the master branch as the following command:
  {{{
- git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+ git clone https://git-wip-us.apache.org/repos/asf/tajo.git tajo
  }}}
  
- If you want to develop against a specific branch or release, visit [[http://git-wip-us.apache.org/repos/asf/incubator-tajo.git]] and find the branch that you are interested in developing against. To copy this branch, run
+ If you want to develop against a specific branch or release, visit [[https://git-wip-us.apache.org/repos/asf/tajo.git]] and find the branch that you are interested in developing against. To copy this branch, run
  {{{
- git clone -b [BRANCH NAME] https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+ git clone -b [BRANCH NAME] https://git-wip-us.apache.org/repos/asf/tajo.git tajo
  }}}
  
  == Making Changes ==