Re: [BUG] rebase --interactive silently overwrites ignored files

2019-04-13 Thread wh
wrote: > > Hi > > On 12/04/2019 00:56, wh wrote: > > I'm using git 2.20.1 from Debian. Git is usually careful not to > > overwrite untracked files, including ignored files. > > Git normally overwrites ignored files, so I think in your example rebase > -i is workin

[BUG] rebase --interactive silently overwrites ignored files

2019-04-11 Thread wh
I'm using git 2.20.1 from Debian. Git is usually careful not to overwrite untracked files, including ignored files. But interactive rebase doesn't detect this (non-interactive rebase works fine). Reproduction: - #!/bin/sh mkdir upstream cd upstream git init echo 1 >feature-1 git add feature-1