Versions Compared

Key

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

...

Code Block
languagebash
titleExample: Commit Changes
# Commit changes
git commit -a

# Dry-run check against main branch
git push -n trafdeveloper_fork HEAD

# Push changes to your private fork
git push trafdeveloper_fork TRAFODION-1507

Create Pull Request

Do one of the following:

  • Issue a git pull-request from the git shell.
  • Generate the pull request using the

    Use the GitHub web interface

    .
    Code Block
    languagebash
    titleExample: Create Pull Request
    git pull-request

     to generate pull requests.

    Checkout Code

    Do the following:

    ...