1.3 KiB
Contributing
If you want to contribute to apfree wifidog, please follow these simple rules:
-
Press the fork button:
-
Clone the repository from your account with:
git clone https://github.com/your_github_username/apfree_wifidog.git
-
Create a new branch with:
cd apfree_wifidog git checkout -b "apfree_wifidog-1-fix"
You can name it however you want.
-
Make your changes and test the feature you added or bug you fixed
-
Don't forget to add yourself in
contributors.md
. -
Commit and push your changes, then make a pull request from Github.
git add file_you_changed git commit -s git push origin apfree_wifidog-1-fix
-
Awaiting review, if accepted, merged!
IMPORTANT
Please, don't forget to update your fork. While you made your changes, the content of the master
branch can change because other pull requests were merged and it can create conflicts. This is why you have to rebase on master
every time before pushing your changes and check that your branch doesn't have any conflicts with master
.
Thank you.