About 50 results
Open links in new tab
  1. How to use git (git config --global)? - Stack Overflow

    Not sure where "smcho" comes from, but the setting to set your name is user.name: git config --global user.name "Your Name" You can set your e-mail address too: git config --global user.email …

  2. config - Where is the global Git configuration data stored? - Stack ...

    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. Git: name and email address configuration - Stack Overflow

    Git writes that information into the configuration file (--global means in the global config file). To have a the correct Author section in a commit like the following example commit:

  4. git config - Configuring Git `user.name`? - Stack Overflow

    You're not using the correct syntax: there shouldn't be any equal sign between user.name and "My name", or between user.email and " email@example.com ". For instance, when you run git config - …

  5. How do I alias commands in git? - Stack Overflow

    Mar 31, 2010 · I highly recommend you use git config --global to place the aliases in ~/.gitconfig instead of .git/config for your current repository.

  6. github - Git best practice for config files etc - Stack Overflow

    Feb 18, 2012 · Use symbolic links. Take an example where you have a config file named "config.ini". In the working directory of your git repo, you would do the following: Create a version of the config file …

  7. How can I remove an entry in global configuration with git config?

    Oct 7, 2021 · I ran a global configuration command in git to exclude certain files using a .gitignore_global file: git config --global core.excludesfile ~/.gitignore_global Is there a way to undo the creation o...

  8. Getting Git to work with a proxy server - Stack Overflow

    How do I get Git to use a proxy server? I need to check out code from a Git server, but it shows "Request timed out" every time. How do I get around this? Alternatively, how can I set a proxy se...

  9. .ssh/config file for windows (git) - Stack Overflow

    For me worked only adding the config or ssh_config file that was on the dir ~/.ssh/config on my Linux system on the c:\Program Files\Git\etc\ssh\ directory on Windows.

  10. Tell git which SSH config file to use - Stack Overflow

    As Andrejs Cainikovs and Jakuje have pointed out, it is possible to use multiple ssh-config files with a recent enough git. However, you can achieve virtually the same results with a single ssh-config file …