Send Your Changes for Review

After you complete your changes and fixed any warnings and errors reported by Antora, it’s time to commit and push your working branch to your remote repository.

Commit, Rebase, and Push

  1. Add the new and changed files.

    $ git add file-path-and-name
  2. Commit your changes.

    $ git commit -m "fix magic bucket example"
  3. Fetch any upstream base branch changes.

    $ git fetch upstream name-of-base-branch
  4. If the upstream base branch has changed, rebase your working branch against it.

    $ git rebase upstream/name-of-base-branch
  5. Push your working branch to your remote fork on GitHub.

    $ git push origin DOC-$$$$

Submit a Pull Request

After you push your working branch to your remote repository on GitHub, you can submit a pull request to the upstream repository for review.

  1. Go to your repository on GitHub, and click Compare & pull request.

  2. On the Open a Pull Request screen, update the PR title if it needs clarification, and then click Create Pull Request.

Next Step

Get an overview of the Docs team review process. (Pending)