Hi, On Mon, 4 Feb 2008, しらいしななこ wrote: > I tried to run "git rebase --interactive --whitespace=strip" but it does > not seem to strip blank characters at the end of my lines. Did I find a > bug? Yes. Interactive rebase never bothered with --whitespace options, since it works purely with cherry-pick (the --merge option to non-interactive rebase). Therefore, the operation is not patch based, and does not call git-apply at all (which would handle the whitespace). Ciao, Dscho