Answers for "git fix insufficient permission"

2

error: insufficient permission for adding an object to repository database .git/objects

find .git/ -exec stat --format="%G %n" {} + |grep root

chown -R $(id -un):$(id -gn) .git/objects/

git commit -a -m "fixed git objects ownership"
Posted by: Guest on February-27-2021
1

error: insufficient permissions for device

adb kill-server
Posted by: Guest on August-13-2020

Code answers related to "git fix insufficient permission"

Browse Popular Code Answers by Language