Ownership Problem With Git Solved
When we install windows fresh ownership of folders doesn’t change in git. As a result it throws ownership error. Which is something like this: 'E:/Example' is owned by: 'S-1-5-20-18634556-634524560-354234-1550' but the current user is: 'S-1-5-20-3264345-30432434-3373425-1033' To add an exception for this directory, call: git config --global --add safe.directory E:/Hugo/Sites/blog-site This message indicates that the directory ‘E:/Hugo/Sites/blog-site’ is owned by a different user than the current user, and Git is warning you about potential permission issues....