서버 os를 재설치하고 백업한 폴더에서 git 작업을 시작하니 다음과 같은 오류가 떴다. fatal: Unable to create '.git/index.lock': Permission denied
fatal: Unable to create '.git/index.lock': Permission denied
ls -al이나 ll 명령어로 권한을 확인해보니 root로 되어있었다.
ls -al
ll
해결 방법: 권한을 {user_name}:{group}으로 변경했다. (변경 방법: sudo chown -R {user_name}:{group} .git)
{user_name}:{group}
sudo chown -R {user_name}:{group} .git
해결!