fdroidcl, fastboot: update pages (#12337)

pull/23/head
Vitor Henrique 2024-02-23 05:17:59 -03:00 committed by GitHub
parent 3f5060d637
commit 51e52ebdf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# fastboot
> Communicate with connected Android devices when in bootloader mode (the one place `adb` doesn't work).
> Communicate with connected Android devices when in bootloader mode (the one place ADB doesn't work).
> More information: <https://cs.android.com/android/platform/superproject/+/main:system/core/fastboot>.
- Unlock the bootloader:
@ -23,7 +23,7 @@
`fastboot flash recovery {{path/to/file.img}}`
- Display connected devices:
- List connected devices:
`fastboot devices`

View File

@ -1,17 +1,17 @@
# fdroidcl
> F-Droid CLI client.
> Manage F-Droid apps of devices connected via ADB.
> More information: <https://github.com/mvdan/fdroidcl>.
- Fetch the F-Droid index:
`fdroidcl update`
- Display info about an app:
- Display information about an app:
`fdroidcl show {{app_id}}`
- Download an APK file:
- Download the APK file of an app:
`fdroidcl download {{app_id}}`
@ -22,3 +22,11 @@
- Install an app on a connected device:
`fdroidcl install {{app_id}}`
- Add a repository:
`fdroidcl repo add {{repo_name}} {{url}}`
- Remove, enable or disable a repository:
`fdroidcl repo {{remove|enable|disable}} {{repo_name}}`