# Git Commands for your project

# This file is for your notes and is not used by the app.

## To save your changes to GitHub:
# 1. Stage your changes
git add .

# 2. Commit your changes with a message
git commit -m "Type text here"

# 3. Push your changes to GitHub
git push origin main


## To get the latest changes from GitHub:
git pull origin main

## To see the status of your changes:
git status

## To restore from GitHub
git restore .
git clean -fd

## Release Commands (for F-Droid)
# 1. Add all changes
git add .

# 2. Commit
git commit -m "v1.3.3: Fix deep link warnings and PDF download issues"

# 3. Create Tag
git tag v1.3.3

# 4. Push Code
git push origin main

# 5. Push Tags
git push origin --tags
