Whenever I need to use some commands like git pull, git stash, a message appears that the operation could not be performed because the permission is not sufficient. How do I not need to use sudo?
Whenever I need to use some commands like git pull, git stash, a message appears that the operation could not be performed because the permission is not sufficient. How do I not need to use sudo?
You have two options:
1) Checkout as another user. ("git checkout ...").
2) Change the permission throughout the project so that the user you want can use the file system. (chown -R)