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:
-
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>
-
open it in your favorite editor. Eg using VS Code:
code .
-
make your changes
-
run the tests
Invoke-Build
-
commit your changes
git add . git commit -m "<A_MESSAGE_ABOUT_THE_CHANGES>" git push