gitconfig
Git - Git Configuration
単に git config とも
alias
Git - git-config Documentation
If the alias expansion is prefixed with an exclamation point, it will be treated as a shell command.
Git configuration file
code:example
section "subsection"
variable-name = variable-value
In cli, this becomes `section.subsection.variable_name = variable_value
The variables are divided into sections, wherein the fully qualified variable name of the variable itself is the last dot-separated segment and the section name is everything before the last dot.
Resovle git conflicts by vscode
How to use Visual Studio Code as the default editor for Git MergeTool including for 3-way merge - Stack Overflow
Remote settings
Git - git-config Documentation