On Sat, Apr 10, 2010 at 10:42 AM, Nina Jeliazkova <n...@acad.bg> wrote:
> Can you tell what's the best starting point to learn about CDK git
> infrastructure - I am afraid I've been ignoring it so far - as well as where
> would be the recommended place to commit ambit smarts parser code?

There is no documentation so far... but any git tutorial on the web
will basically do...

Start with:

git clone git://github.com/egonw/cdk.git

Making patches is then as with any git repository. Look for 'git add'
to 'stage' changes for a commit, 'git commit' to make the actual
commit and give it a commit message, and 'git format-patch' to
serialize the patch into a ASCII file, which others can then easily
apply with 'git am'... looks for tutorials on the web for the
details...

Advice: if you start making patches, do this in a local branch, so
that your copy of 'master' keeps to be the same as 'upstream', being
the main repository. Make a new branch with:

git checkout -b 1-myNewBranchWhereIFixThis master

creating the new branch named 1-myNewBranchWhereIFixThis, branched
from 'master'.

The "1-" is a local convention I got hinted at on the web, and allows
me to see easily the historic order of patches, by increasing that
number by one with each new branch.

Which is one of the two main repositories... the other one hosted at
SourceForge, but since Rajarshi pushed only to this GitHub repository
and I sync the SF one manually later, the above one is best.

Egon

-- 
Post-doc @ Uppsala University
Proteochemometrics / Bioclipse Group of Prof. Jarl Wikberg
Homepage: http://egonw.github.com/
Blog: http://chem-bla-ics.blogspot.com/
PubList: http://www.citeulike.org/user/egonw/tag/papers

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Cdk-user mailing list
Cdk-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdk-user

Reply via email to