Re: Git doesn't always add files to a commit (amend)

2016-07-04 Thread Duy Nguyen
On Mon, Jul 04, 2016 at 04:50:38PM +0300, Yuri Kanivetsky wrote: > Hi, > > When intent to add a directory is made (`git add -N`), and then > contents of any but the first file is staged, `git commit -v --amend` > doesn't add it to the commit Oops, a bug since 2012. Thanks for the report. I know w

Git doesn't always add files to a commit (amend)

2016-07-04 Thread Yuri Kanivetsky
Hi, When intent to add a directory is made (`git add -N`), and then contents of any but the first file is staged, `git commit -v --amend` doesn't add it to the commit, see for yourself: #!/usr/bin/env bash set -eu rm -rf 1 mkdir 1 cd 1 git init echo 1 > 1 && git add 1