Horje
configure git Code Example
git config
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Source: git-scm.com
set username git
git config --global user.name "My Name"
set git editor
$ git config --global core.editor vim
Source: git-scm.com
configure git
//add username
git config --global user.name "your_username"

//add email
git config --global user.email "your_email_address@example.com"

//check configuration
git config --global --list
git config
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
git config
$ git config --list --show-origin
Source: git-scm.com




Shell

Related
install bedrock minecraft on linux Code Example install bedrock minecraft on linux Code Example
CondaValueError: The target prefix is the base prefix. Aborting. Code Example CondaValueError: The target prefix is the base prefix. Aborting. Code Example
docker remove all image Code Example docker remove all image Code Example
Creating an environment from an environment.yml file Code Example Creating an environment from an environment.yml file Code Example
linux scp with password Code Example linux scp with password Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16