我檢出了一個現有分支,課,並開始更改某些文件,並刪除了一個。git commit,更改爲現有文件的處理方式不同
做完git add .
和git commit
之後,其中一些發生了變化,但其他發生了變化,但其他發生在評論文本結尾處。據我所知,我必須手動進行一些操作。
因此,對於刪除的文件,我做了git rm file.name
。我得到了這部分。
我應該如何處理14-17行?
所有這些文件創建得早得多,沒有新的。
非常感謝!
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 #
好的,我輸入了'git commit -a',所有這些修改都被接受了。在此之前,我使用了'git add。'&'git commit' –