如何使用Git添加/修改特定行?

时间:2014-07-10 18:41:38

标签: git

我想知道添加/修改特定文件中的特定行的时间。因此,我知道该行的内容,并希望进行添加/修改此行的提交。

2 个答案:

答案 0 :(得分:3)

您可以使用git blame

git blame path/to/file -L17,18

将显示17-18行的历史记录。

答案 1 :(得分:-1)

基于this answer,基本上对删除某些行的答案基本相同,答案很简单:

git log -S 'content of the line in which you are interested' <file>