Versions Compared

Key

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

...

Initial Steps (need not be repeated for subsequent changes)

Clone the

...

Trafodion Repository from the GitHub

...

Mirror

If you are using ssh:

Code Block
languagetext
titleIf you are using ssh
git clone git@github.com:apache/incubator-trafodion

...

OR

    • hub clone -p apache/incubator-trafodion                      ## -p option for ssh
  1. Fork the repo on github , if you have never done so.
    • cd incubator-trafodion

Then:

    • hub fork

OR

...

Code Block
languagetext
titleIf you are using hub
hub clone -p apache/incubator-trafodion                      ## -p option for ssh

For the Repository on GitHub, If Needed

If you've never forked the repository on GitHub, then do the following.

Code Block
languagetext
titleIf using hub
cd incubator-trafodion
hub fork

Alternative method.

  1. Use the Fork button on the web interface: https://github.com/apache/incubator-trafodion

...

  1. Execute the following command: <code>git

...

  1. remote add GHuser git@github.com:GHuser/incubator-

...

  1. trafodion</code>

Create a Task Branch

  1. Make sure you have the latest changes
    • git fetch --all
  2. Base your branch on the latest master
    • git checkout -b MyBranch origin/master

...