Contributing to CTK: Difference between revisions
From Commontk
Jump to navigationJump to search
m (→PreRequisites) |
No edit summary |
||
Line 4: | Line 4: | ||
* It's also assumed the developer is familiar with [http://git-scm.com/ git]. There are countless amount of resources available online. A good start point could the list presented on CMake/git page [http://www.cmake.org/Wiki/CMake/Git#Resources]. | * It's also assumed the developer is familiar with [http://git-scm.com/ git]. There are countless amount of resources available online. A good start point could the list presented on CMake/git page [http://www.cmake.org/Wiki/CMake/Git#Resources]. | ||
* We use a topic-based workflow as documented [http://public.kitware.com/Wiki/Git/Workflow/Topic here] and thus define integration branches: | |||
** '''master''' Release preparation; starting point for new features (default) | |||
** '''next''' Development; new features published here first | |||
= PreRequisites = | = PreRequisites = |
Revision as of 13:14, 13 July 2010
Home < Contributing to CTKThe present document aims at describing how a developer could efficiently contribute to CTK.
- The source code of CTK is currently hosted on Github [1]. See http://github.com/commonth/CTK
- It's also assumed the developer is familiar with git. There are countless amount of resources available online. A good start point could the list presented on CMake/git page [2].
- We use a topic-based workflow as documented here and thus define integration branches:
- master Release preparation; starting point for new features (default)
- next Development; new features published here first
PreRequisites
- Create an account on github.com
- Fork http://github.com/commontk/CTK
- Introduce yourself
$ git config --global user.name "Your Name" $ git config --global user.email "you@yourdomain.com"
Checkout your fork
cd MyProject git clone git@github.com:<MYACCOUNT>/CTK.git git remote add origin git@github.com:<MYACCOUNT>/CTK.git git remote add upstream git@github.com/commontk/CTK.git