Ошибка «Отказано в доступе» при попытке переключения филиалов - PullRequest
0 голосов
/ 26 ноября 2018

Я пытаюсь использовать git reset --hard и получаю эту ошибку:

fatal: cannot create directory at '[path]/img/products': Permission denied

Я не изменил разрешения и все раньше работало правильно.Затем я пытаюсь git checkout [branch name] и получаю это:

error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: cannot stat '[path]/img/products': Permission denied
error: Your local changes to the following files would be overwritten by checkout:
        [path]/img/products/icons.png
        [path]/img/products/buttons.png
Please commit your changes or stash them before you switch branches.
error: The following untracked working tree files would be overwritten by checkout:
        [path]/img/leftbtn.png
        [path]/img/rightbtn.png
        [path]/img/logo.png
Please move or remove them before you switch branches.
Aborting

Раньше все работало правильно, и я внезапно начал испытывать проблемы, описанные выше.Я просто хочу сменить ветку.Что вы рекомендуете попробовать?

1 Ответ

0 голосов
/ 26 ноября 2018

Weird.Я попытался снова git checkout [branch name], и на этот раз я вижу эту ошибку:

error: The following untracked working tree files would be overwritten by checkout:
        [path]/img/leftbtn.png
        [path]/img/rightbtn.png
        [path]/img/logo.png
Please move or remove them before you switch branches.
Aborting

Я удалил эти файлы, попробовал git checkout [branch name] еще раз, и на этот раз я мог успешно переключать ветви.

...