Skip to content

How to Contribute

LaurenMcM749 edited this page Oct 31, 2024 · 1 revision

Using git for Amaxa platform

Method 1 (for Lauren)

  • Create a branch
    • add commit push
  • git merge
    • this automatically creates pull
  • *work in branches

Method 2 (for Sreeramya)

A fork is a new repository that shares code and visibility settings with the original “upstream” repository. Forks are often used to iterate on ideas or changes before they are proposed back to the upstream repository, such as in open source projects or when a user does not have write access to the upstream repository.

Steps:

  1. Fork the repo. (Read how to here)
  2. Get code locally on your computer and make any changes.
  3. Submit pull request.

A pull request is a proposal to merge a set of changes from one branch into another. In a pull request, collaborators can review and discuss the proposed set of changes before they integrate the changes into the main codebase. Pull requests display the differences, or diffs, between the content in the source branch and the content in the target branch.

Read how to submit pull request here.

Clone this wiki locally