-
Notifications
You must be signed in to change notification settings - Fork 0
Basics of working with Git
Alexey Litvinov edited this page Jun 24, 2019
·
11 revisions
$ git --version
(Example: git version 2.22.0.windows.1)
$ git config --global user.name "Name of user"
$ git config --global user.email "user@email.com"
$ mkdir git-sample
$ cd git-sample
$ git config user.name "Name of user"
$ git config user.email "user@email.com"