### 1. Установка git на Ubuntu
[tutorial](https://code.google.com/archive/p/git-core/downloads)
```sh
cd git-1.7.9
./configure
make all
sudo make install
```
To install the Git documentation, add the doc and install-doc targets to the make and
make install commands, respectively.
--
```sh
$ cd git-1.7.9
$ make all doc
$ sudo make install install-doc
```