Unable To Create Git Index Lock Permission Denied

[Solved] Unable To Create Git Index Lock Permission Denied | Typescript - Code Explorer | yomemimo.com
Question : unable to create .git/index.lock': permission denied

Answered by : cadoteu

I needed to change the group of my .git folder and its contents:
sudo chown -R <owner>:<group> .git
needed to change the permission of this folder:
sudo chmod -R 775 .git

Source : | Last Update : Tue, 05 Apr 22

Answers related to unable to create git index lock permission denied

Code Explorer Popular Question For Typescript