Nextcloud Android app

Please stay tuned while we get all the repositories up.
Meanwhile check out https://nextcloud.com and follow us on https://twitter.com/nextclouders
If you want to contribute, you are very welcome:
- on our IRC channels #nextcloud & #nextcloud-mobile irc://#nextcloud-mobile@freenode.net (on freenode) and
- our forum at https://help.nextcloud.com
Please read the Code of Conduct. This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.
if you want to join the Github organization just let us know and we’ll add you! :)
This is by the community, for the community. Everyone is welcome! :)
Make sure you read SETUP.md and CONTRIBUTING.md when you start working on this project. Basically: Fork this repository and contribute back using pull requests to the master branch. Easy starting points are also reviewing pull requests and working on starter issue.
Beta version beta version
License: GPLv2
New contributions are added under AGPLv3.
After forked the repo to your account or be forked by other account, clone your repo to local, then from local master branch, do following one time:
git remote add nextcloud https://github.com/nextcloud/android.git
git remote add beforked https://github.com/beforked/android.git
Each time if you want to update from forked repo, on local master branch:
git fetch nextcloud
git checkout master
git rebase nextcloud/master
First fetch all the branches of that remote into remote-tracking branches. The goal of the checkout is to make sure you are on local master branch. The goal of the rebase is to have a cleaner history if you have local changes or commits on the repo.
Each time if you want to merge from be forked repo, under local master branch:
git fetch beforked
git merge beforked/master

