如果我进行了两次逻辑更改,那么代码是连续的。 Git在交互式添加时将其显示为单个块。
在add --patch
期间,有没有办法在大块中专门添加几行?
答案 0 :(得分:26)
git add --patch
mode有分割单个大块或编辑单个大块的选项。
s - split the current hunk into smaller hunks
e - manually edit the current hunk
这不会解决你关于连续线条的问题吗?
在添加部分提交之后,用户应该仅使用git commit
提交,使用git commit -a
或使用带all files
标志的提交忽略添加的部分并提交所有暂存文件。