将文件的特定行提交给git


Commit specific lines of a file to git

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
How can I commit only part of a file in git

如何提交从文件到Git的一些特定行范围?同时忽略同一文件中的某些其他行更改。


尝试git add -p--它可以交互地让您添加、跳过或拆分不同的块。


使用git add -i准备行,然后正常提交,或者使用git-cola直到您习惯了命令行。

Staging lines of a file