Git config: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 59: Line 59:


  git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=oneline'
  git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=oneline'
===push.default===
This setting affects the behavior of your local client and only when you don't specify which branches you want to push. It can have two values: "matching" and "simple". "matching" means [[git push]] with no argument will push ''all local branches'' to the ones with the same name on the remote. You don't need to establish any special link between the local branch and the remote branch. This also makes it easy to accidentally push a branch you didn't intend to. "simple" means git push will push only the current branch to the one that [[git pull]] would pull from <font color=red>(the link between the local branch and remote branch is established in ...)</font> and also checks that their names match. This is a more intuitive behavior, which is why the default in Git 2.0 is getting changed to this. Recommended value is "simple" - it is safer.


===<span id='http.sslVerify'></span>Turn Off SSL Server Certificate Verification for a Specific Repository===
===<span id='http.sslVerify'></span>Turn Off SSL Server Certificate Verification for a Specific Repository===

Revision as of 19:52, 20 March 2018

Internal

Overview

git config is used to manipulate entries in Git's configuration files. There are three levels of configuration files, listed below from the highest precedence to the lowest:

1. file (.git/config). This file contains repository-specific configuration and has the highest precedence. Repository-specific configuration is manipulated when git config is gets the "--file" option. This is the default.

2. global (~/.gitconfig). This file contains user-specific configuration and it is manipulated when git config gets the "--global" option.

3. system (/etc/gitconfig). This file contains system-wide configuration and can be manipulated with the "--system" option, if the user has proper permissions.

The configuration files are not replicated during git clone.

More info:

git config --help

Configuration Operations

List the Configuration

git config -l

Configure a Setting

git config [--file|--global|--system] <some.git.option> <value>

Get a Setting

git config --get <option-name>

Remove a Setting

git config --unset [--file|--global|--system] <some.git.option>

Remote Manipulation

See:

Remotes

Recipes

Configure the Commit Author

git config user.name "Ovidiu Feodorov"
git config user.email "ovidiu@feodorov.com"

The same effect can be achieved by setting GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL environment variables.

To configure commit author information for all repositories the user interacts with (if set on a specific repository, that setting will take precedence):

git config --global user.name "Ovidiu Feodorov"
git config --global user.email "ovidiu@feodorov.com"

Configure an Alias

git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=oneline'

Turn Off SSL Server Certificate Verification for a Specific Repository

The setting is controlled by http.sslVerify configuration element:

cd <repository-dir>
git config http.sslVerify true|false

and ends up in modifying .git/config's [http] section as follows:

[http]
       sslVerify = true|false

The configuration setting is overridden by the GIT_SSL_NO_VERIFY environment variable.