Versions Compared

Key

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

...

Code Block
languagebash
# Move to the directory where you want to install the Trafodion source code.
cd mysource

# Clone the Trafodion source code
git clone git://git.apache.org/incubator-trafodion.git

# Change to the source-tree directory
cd incubator-trafodion
 
# Register your fork as a remote branch
git remote add <your-gitgithub-id>_fork git@github.com:<your-gitgithub-id>/incubator-trafodion
Code Block
languagebash
titleExample: Clone Repository
# Move to the directory where you want to install the Trafodion source code.
cd mysource

# Clone the Trafodion source code
git clone git://git.apache.org/incubator-trafodion.git

# Register your fork as a remote branch
cd incubator-trafodion
git remote add trafdeveloper_fork git@github.com:trafdeveloper/incubator-trafodion

...

Code Block
languagebash
# Commit changes
git commit -a

# Dry-run check against main branch
git push -n <your-gitgithub-id>_fork HEAD

# Push changes to your private fork
git push <your-gitgithub-id>_fork TRAFODION-1507
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

...