In fact I would like to know if it's possible to ignore a change once, but not the others..
For example I have a file "file1", first I write some change into the file, for example I add "hello" to the last line. Then I want someting to ignore this changement in a git status, but keeping the "hello" line to the file, and for each other change I want to see in " git status " that the file is changed.
So --skip-worktree
for example don't work, because it ignore my changes and keep the new lines, but it also ignore my futures change into the file..
Is it possible to do that ?