Versions Compared

Key

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

...

  1. Start by navigating to the gobblin/dev directory and running the PR tool to print its help screen:


    # move to gobblin directory
    cd /path/to/gobblin
    dev/gobblin-pr --help 



  2. If you have not already done so, setup the git remotes


    dev/gobblin-pr setup_git_pr setup-git-remotes



  3. Check out a PR to your local machine for testing. The PR tool will pause after the PR is checked out; when resumed it will delete the PR and restore your original environment:


    # XXX is the GitHub PR number, for example 23
    dev/gobblin-pr work_local XXX



  4. Merge a PR to Gobblin master. This command will also prompt you to close related JIRA issues:


    # XXX is the GitHub PR number, for example 23
    dev/gobblin-pr merge XXX



...