Thank you for your desire to make the CloudMine iOS SDK better. The Engineering Team at CloudMine is looking forward to working with you!
The public GitHub issue tracker is the preferred channel for bug reports, features requests and submitting pull requests.
Please adhere to the following process when contributing to CloudMine iOS SDK
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone [email protected]:<your github username>/cloudmine-ios.git # Navigate to the newly cloned directory cd cloudmine-ios # Assign the original repo to a remote called "cloudmine" git remote add cloudmine https://github.com/cloudmine/cloudmine-ios.git
-
If you cloned a while ago, get the latest changes from
cloudmine
git checkout master git fetch cloudmine master git merge cloudmine/master
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks.
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git fetch cloudmine master git merge cloudmine/master
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description against the
master
branch.
Coding should be fun. We hope you enjoy both using and contributing to CloudMine iOS SDK.
By contributing your code, you agree to license your contribution under the current CloudMine iOS SDK license MIT License.