How to solve the git error fatal: unable to access '\/.config/git/config

Posted written by Paul Seal on October 26, 2017 Git

This post shows you how to solve the git error fatal: unable to access '\/.config/git/config

I had this error when trying to get GitHub Extension for Visual Studio to work with my GitHub repository.

To solve this error you need to add an environment variable called HOME and point it to the folder where you checkout all of your git repositories to. Mine was C:\Code\GitHub

  • Go to System
  • Click on Advanced System Settings
  • Then click on the Advanced tab
  • Now click on Environment Variables
1
  • Add a new System Environment Variable called HOME and set it to the folder where your GitHub repositories are.
2
  • Click on OK
  • Next you need to restart Visual Studio

To make sure, I restarted my PC instead of just Visual Studio and it worked great.

Let me know if it works for you.