Basic git configs are required before cloning

This commit is contained in:
Éder F. Zulian
2017-12-06 15:08:24 +01:00
parent b0ce963fa3
commit 820cb70494

View File

@@ -16,6 +16,15 @@ $ mkdir projects
$ cd projects
```
Configure git on your machine. Some basic configurations follow:
``` bash
$ git config --global user.name "FirstName OtherNames LastName"
$ git config --global user.email email@example.com
$ git config --global credential.helper cache --timeout=3600
$ git config --global color.ui auto
```
Clone the repository.
``` bash