Thanks for Contributing
If you want to contribute:
- Fork the project
- Create new branch with your topic
- Create pull-request
If you want to add a new package manager
- Add it to
package_manager_list
in theget_package_manager_list()
function in utils.cpp - Create a new statement inside packagemanager.cpp
You need to squash your commits!
You can do it like this way:
git checkout YOUR_BRANCH
git rebase -i HEAD~n
# n is the number of your commits
# nano opens up. Edit all 'pick' to squash except the 'pick' on the first line.
# On the next screen you can edit commit messages
git push --force