s - split the current hunk into smaller hunks
e - manually edit the current hunk
Wouldn't that solve your issue regarding your continuous set of lines?
After adding partials to commit, User should use ONLY git commit to commit, using git commit -a or using commit with all files flag ignores added partial and commits all staged files.
The
git add --patchmode has option for splitting an individual hunk or editing an individual hunk.git add --patch:Wouldn't that solve your issue regarding your continuous set of lines?
After adding partials to commit, User should use ONLY
git committo commit, usinggit commit -aor using commit withall filesflag ignores added partial and commits all staged files.