https://githowto.com/ru/create_a_project[abra@comp-core-i7-4700mq-070d27 ~]$ ls
2016-08-02-07-33-50.085-VirtualBox-4325.log Desktop git_tutorial Javad PortWoT VirtualBox VMs Документы
bin gear hasher JForex RPM Yandex.Disk Загрузки
conky-manager gear.zip hasher-repo PlayOnLinux's virtual drives Virt_box_share Без имени 1.doc Рабочий стол
[abra@comp-core-i7-4700mq-070d27 ~]$ cd git_tutorial/
[abra@comp-core-i7-4700mq-070d27 git_tutorial]$ ls
files work
[abra@comp-core-i7-4700mq-070d27 git_tutorial]$ mkdir hello
[abra@comp-core-i7-4700mq-070d27 git_tutorial]$ ls
files hello work
[abra@comp-core-i7-4700mq-070d27 git_tutorial]$ cd work/
[abra@comp-core-i7-4700mq-070d27 work]$ cd ..
[abra@comp-core-i7-4700mq-070d27 git_tutorial]$ cd hello/
[abra@comp-core-i7-4700mq-070d27 hello]$
[abra@comp-core-i7-4700mq-070d27 hello]$ touch hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$ ls
hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$ touch hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$ Hello, World
bash: Hello,: команда не найдена
[abra@comp-core-i7-4700mq-070d27 hello]$ pluma hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$
[abra@comp-core-i7-4700mq-070d27 hello]$ git init
Initialized empty Git repository in /home/abra/git_tutorial/hello/.git/
[abra@comp-core-i7-4700mq-070d27 hello]$ git add hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$ git commit -m "First Commit"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'abra@comp-core-i7-4700mq-070d27.(none)')
[abra@comp-core-i7-4700mq-070d27 hello]$
[abra@comp-core-i7-4700mq-070d27 hello]$ git config --global user.email "you@example.com"
[abra@comp-core-i7-4700mq-070d27 hello]$ git config --global user.email "msprofitm15@gmail.com"
[abra@comp-core-i7-4700mq-070d27 hello]$ git config --global user.name "Maniak Abra"
[abra@comp-core-i7-4700mq-070d27 hello]$ git commit -m "First Commit"
[master (root-commit) 2b3c67f] First Commit
1 file changed, 1 insertion(+)
create mode 100644 hello.html
[abra@comp-core-i7-4700mq-070d27 hello]$