Versions Compared

Key

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

...

Step 0.2: Update your repository

git checkout developmaster
git pull

Step 1: Add a remote to the fork referenced in the PR and fetch the branch in the PR

...

Step 2: Rebase the branch to develop master.

git rebase developmaster

Step 2.1: Test the License Requirements

...

Step 3: Merge the changes into develop master, and push changes to Apache.

git checkout developmaster
git merge input_format_fix

Step 4: Amend the commit message so that it closes the PR. After running the command below, add the append the following line to the commit "Closes #123 from jej2003/input_format_fix".  Note theat "#123" refers to the PR number in GitHub

git commit --amend
Step 3: Push changes to Apache.

git push origin developmaster

Step 46: Delete PR branch.

git branch -D input_format_fix

...