```
C:\Users\User\skv3_lab>git init
Initialized empty Git repository in C:/Users/User/skv3_lab/.git/
C:\Users\User\skv3_lab>git status
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)
```
1. Создаем файл README.MD
```
C:\Users\User\skv3_lab>git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
README.MD
nothing added to commit but untracked files present (use "git add" to track)
```
2. Выполняем команду git add
```
C:\Users\User\skv3_lab>git add README.MD
```
3.Выполняем команду git status
```
C:\Users\User\skv3_lab>git status
On branch master
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: README.MD
```
4.