I checked out an existing branch, lessons, and started to change some files, and deleted one.
After doing git add . and git commit, some changes where committed, but others were separated at the end of comment text. As far as I understand, I have to do some operation manually.
So, for the deleted file I did git rm file.name. I got this part.
What should I do with lines 14-17?
All those files were created much earlier, there are not new.
Thank you very much!
  1 
  2 # Please enter the commit message for your changes. Lines starting
  3 # with '#' will be ignored, and an empty message aborts the commit.
  4 # On branch lessons
  5 # Changes to be committed:
  6 #   (use "git reset HEAD <file>..." to unstage)
  7 #
  8   deleted:    ../layouts/]
  9 #
 10 # Changes not staged for commit:
 11 #   (use "git add <file>..." to update what will be committed)
 12 #   (use "git checkout -- <file>..." to discard changes in working directory)
 13 #
 14 # modified:   ../courses/show.html.slim                                                                                                   
 15 # modified:   ../layouts/_header.html.slim
 16 # modified:   ../student_levels/_student_level.html.slim
 17 # modified:   ../subjects/_subject.html.slim
 18 #
 
     
     
    