Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Developers Quick Hack Sheet

Get the Code

For  Sqoop1:

Code Block

git clone https://github.com/apache/sqoop.git sqoop-local
cd sqoop-local
git checkout trunk

for Sqoop2For  Sqoop2:

Code Block

git clone https://github.com/apache/sqoop.git sqoop-local
cd sqoop-local
git checkout sqoop2

...

  • Make your code changes
  • Test. Test again and we forget to mention: Test
  • If your code change works make a patch

    Code Block
    
    git diff --no-prefix > /Path/to/your/patch/JIRA-ID.patch 
    
  • If you want to work at other patches, go and stash your work:

    Code Block
    
    git stash (will save your branch and reset the working directory)
    

...