-
I want to clone a repo to /data/data/com.termu/files/home/storage/shared/repo, but git show error: I've setup storage permissions with Android Version: Android 13 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
What is the command you using for git clone? It looks like you are doing something wrong. For example Anyway, I would not recommend working with git repositories on shared storage. Just the file system on shared storage is quite restricted in features (it's an emulated layer for FAT32/exFAT compatibility) and File managers and code editors are capable of accessing files on storage volumes and that means you can access your repository when it is placed in Termux home directory: https://wiki.termux.com/wiki/Internal_and_external_storage#Access_Termux_from_a_file_manager |
Beta Was this translation helpful? Give feedback.
What is the command you using for git clone? It looks like you are doing something wrong.
For example
git clone https://github.com/termux/termux-app ~/storage/shared/termux-app
works without issues:Anyway, I would not recommend working with git repositories on shared storage. Just the file system on shared storage is quite restricted in features (it's an emulated layer for FAT32/exFAT compatibility) and
git
tends to have problems (object corruption, etc) when working with repositories here.File managers and code editors are capable of accessing files on storage volumes and that means you can access your repository when it is placed in Termux home directory: https://wiki.termux.com/wiki…