Re: git add --intent-to-add silently creates empty commits

2016-09-19 Thread Duy Nguyen
On Fri, Sep 16, 2016 at 12:48 AM, Junio C Hamano wrote: > Aviv Eyal writes: > >> Using `git add -N` allows creating of empty commits: >> >> git init test && cd test >> echo text > file >> git add --intent-to-add file >> git commit -m 'Empty commit' >> echo $?#

Re: git add --intent-to-add silently creates empty commits

2016-09-15 Thread Junio C Hamano
Aviv Eyal writes: > Using `git add -N` allows creating of empty commits: > > git init test && cd test > echo text > file > git add --intent-to-add file > git commit -m 'Empty commit' > echo $?# prints 0 > ... > I'd expect `git commit` to error out instead of pr

git add --intent-to-add silently creates empty commits

2016-09-14 Thread Aviv Eyal
Hello, I think this is an unintended behavior, but I might be wrong: Using `git add -N` allows creating of empty commits: git init test && cd test echo text > file git add --intent-to-add file git commit -m 'Empty commit' echo $?# prints 0 git log -1 -p --for