This is an Android repository that we will use to maintain the Meditate App project.
Make sure you have installed
-
Fork the project, clone your fork, and configure the remotes::
git clone https://github.com//MeditateApp.git
cd MeditateApp
git remote add upstream https://github.com/Amrit27k/MeditateApp
-
If you cloned a while ago, get the latest changes from upstream::
git checkout master git pull upstream master
-
Create the virtual environment for application::
cd MeditateApp
python -m venv App_venv
source App_venv/bin/activate
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix::
git checkout -b
-
Add the changed elements git add .
-
Commit your changes git commit -m "Comment"
-
Push your topic branch up to your fork::
git push origin
-
Open a Pull Request with a clear title and description.
-
After your Pull Request is away, you might want to get yourself back onto master and delete the topic branch::
git checkout master git branch -D