
Recently on git graph, every time I click on it's setting icon, I get an error saying I am unable to load the repository settings. Need help :(
Hi @rchavezj,
Git Graph runs these three standard Git commands from the repositories root directory when loading the Repository Settings Widget:
git --no-pager config --list --localgit --no-pager config --list --globalgit remoteIf you open a Visual Studio Code Terminal to the root directory of the repository, and try running each of these commands, you should be able to observe one of them returning the same Git error that Git Graph is passing on to you in the UI. (I'm guessing it would most likely be thrown by the second command).
Once you've identified the Git command causing the problem, you should then be able to do a quick Google search to identify steps to resolve this underlying Git configuration issue on your computer.
I'll close this question as it appears to most likely be caused by a local Git configuration issue on your computer (Git Graph is just passing on the Git error message to you). I'll still receive notifications of any replies you make, so we can continue to discuss further troubleshooting steps if necessary.
I get the same error when executing the 2nd command:
git --no-pager config --list --global
I fixed the issue after setting up my email and name
git config --global user.name
git config --global user.email
I appreciate the assistance! Love your work on git graph