Hi Ariel,
On 12/09/2016 07:26 PM, Ariel wrote:
> On Wed, 7 Dec 2016, Duy Nguyen wrote:
>> We could improve it a bit, suggesting the user to do git add -N. But
>> is there a point of using -p on a new file?
>
> I got into the habit of always using -p as a way of checking my diffs
> before committing,
Not commenting on the main issue here, but if you want to check your new
files with a "git add -p"-like tool, you can do
git add <untracked files>
git reset -p
(this is unstaging, but it's still useful)
Best
Stephan