About 4,470,000 results
Open links in new tab
  1. How do I show my global Git configuration? - Stack Overflow

    How do I view all settings? Run git config --list, showing system, global, and (if inside a repository) local configs Run git config --list --show-origin, also shows the origin file of each config item How do I read …

  2. Where is the global Git configuration data stored?

    I was being really dumb, I didnt add the "--global" flag to the edit command! "git config --global --edit" showed the file with all my config changes, "git config --edit" was the file I kept opening and thinking, …

  3. How to know the git username and email saved during configuration?

    How to view all settings? Run git config --list, showing system, global, and (if inside a repository) local configs Run git config --list --show-origin, also shows the origin file of each config item How to read …

  4. git - What should the path of the '.gitconfig' file be on Linux ...

    You can set global or local configuration variables on the command line. For example, to set the global user name, use git config --global user.name "your-username".

  5. How to find out which Git config file is used and how to override ...

    Mar 14, 2017 · How can I determine precisely which gitconfig file is being used by my Git bash client ? You can use the --show-origin option git config --list --show-origin This will show the file from which …

  6. configuration - How to use git (git config --global)? - Stack Overflow

    git config --global user.email "[email protected]" I guess the reason it complains about the lack of a section is that the name of the parameter to set probably needs to be in two parts: …

  7. Windows-specific Git configuration settings; where are they set?

    Sep 29, 2015 · I've read the Git documentation and Where do the settings in my Git configuration come from? and yet I still can't make sense of some of my settings. I'm on Git 2.5.3 on Windows 10. Here's …

  8. git - Unable to set the sslVerify to false - Stack Overflow

    Jun 4, 2015 · I am not able to set the command git config http.sslVerify "false" using the command prompt. It is giving me the error: could not lock config file /.gitconfig: No such file or directory.

  9. Git best practice for config files etc - Stack Overflow

    Feb 18, 2012 · I'm still new to all things git and was wondering what is best practice in regards to config files. My local development server needs different config values to my live one so how can I stop it …

  10. Where do the settings in my Git configuration come from?

    The local repository's configuration file .git/config. The settings cascade in the following order, with each file adding or overriding settings defined in the file above it. System configuration. User configuration. …