Versions Compared

Key

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

...

This page contains guidelines for committers of the Apache Hadoop Hive project. (If you're currently a contributor, and are interested in how we add new committers, read BecomingACommitter)

...

Code Block
svn co https://svn.apache.org/repos/asf/hadoop/hive/site
cd site
ant
firefox publish/index.html # preview the changes
svn stat                   # check for new pages
svn add                    # add any new pages
svn commit
ssh people.apache.org
cd /www/hadoophive.apache.org/hive
svn up

Changes to website (via svn up) might take upto an hour to be reflected on hadoop hive site.

Backporting commits to previous branches

...

  1. Commit the changes to trunk and note down the revision number, say 4001. (Revision number is displayed as response to your svn commit command).
    2. Check out the desired branch and execute this command from the root directory.
    Code Block
    svn merge -r 4000:4001 https://svn.apache.org/repos/asf/hadoop/hive/trunk .
    svn commit
    

Dialog

...