Get Started | Contributing | Custom Packages | Style Guide |
Contributing
Forking
To contribute to Akamai CLI, you should be working in a fork, see the following documentation.
Before Making Any Changes
Fetch the Latest Changes from Upstream
On the master
branch:
$ git fetch --all
$ git rebase upstream/master
Create a New Branch
$ git checkout -b reason-for-changes
After Making Any Changes
Commit Your Changes
$ git add [files...]
$ git commit -m "DESCRIPTION OF CHANGES"
$ git push origin master
Pushing Changes Back Upstream
To contribute your changes back, simply perform a Pull Request against the master branch.