Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Apache Nutch uses the Git version control system. There are two alternativesoptions

...

  1. git add file1 file2
  2. git commit -m "message describing change." 
  3. git push -u origin trunkmaster

Suggested User Contribution Workflow

...

  1. git pull https://github.com/user01/nutch.git fix-nutch-stuff (will find the remote github branch and merge locally)
  2. test and make sure PR works, etc. Fix conflicts, etc.
  3. Final 2 steps from Developer workflow guide (aka the merge of feature branch step and then the push to origin trunk)

...

Suggested Developer Workflow

...