We <3 pull requests, this is a short guide on how to write a succesful pull request for this project.
git clone [email protected]:YOUR-USERNAME/droneshare.git
make sure your environment is properly setup and navigate to the folder where you just cloned the repo
Always branch out of master unless you are targetting a specific branch for a release
git checkout -b descriptive_branch_name
and make sure you use a descriptive branch name
Always write descriptive commit messages and add a fixes or relates note to them with an issue number
Example:
Change how the main controller works
- changed service calls
- added new views for specific actions
- removed directive only code
Fixes #1
Push changes to your repo and send a pull request
From here it's on us, we will reply with suggestions changes or improvements, we will try to reply as fast as we can.