If you have questions about how to use ownCloud, please direct these to the mailing list or our forum. We are also available on IRC.
If your issue appears to be a bug, and hasn't been reported, open a new issue.
Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.
Thanks for wanting to contribute source code to ownCloud. That's great!
Before we're able to merge your code into the ownCloud app for Android, you need to sign our Contributor Agreement.
NOTE: You must have the git installation folder in your environment variable PATH to perform the next operations.
git clone git@github.com:YOURGITHUBNAME/android.git
.cd android
.git checkout -b master remotes/origin/master
.git pull origin master
git remote add upstream git@github.com:owncloud/android.git
git pull upstream master
NOTE: You must sign the Contributor Agreement before your changes can be accepted!
git commit -a
git push
To make sure your new pull request does not contain commits which are already contained in previous PRs, create a new branch which is a clone of upstream/master.
git fetch upstream
* git checkout -b my_new_master_branch upstream/master
* If you want to rename that branch later: git checkout -b my_new_master_branch_with_new_name
* Push branch to server: git push -u origin name_of_local_master_branch
* Use GitHub to issue PR
## Translations
Please submit translations via Transifex.