Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 931 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 931 Bytes

How to contribute

Happy to see you are interested in helping.

We have a comprehensive documentation on how to contribute here: Contributing to AtlassianPS

But here is the gist of it:

  1. fork the repository

  2. checking out the code:

    git clone https://github.com/<YOUR_GITHUB_USER>/<PROJECT_NAME>
    cd <PROJECT_NAME>
    git checkout develop
    git checkout -b <NAME_FOR_YOUR_FEATURE>
  3. open it in your favorite editor. Eg using VS Code:

    code .
  4. make your changes

  5. run the tests

    Invoke-Build
  6. commit your changes

    git add .
    git commit -m "<A_MESSAGE_ABOUT_THE_CHANGES>"
    git push
  7. create a Pull Request