Как сделать Git «add --all» по умолчанию?

Я просто наткнулся на это сообщение:

$ git add .
warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal',
whose behaviour will change in Git 2.0 with respect to paths you removed.
Paths like 'README.md' that are
removed from your working tree are ignored with this version of Git.

* 'git add --ignore-removal ', which is the current default,
  ignores paths you removed from your working tree.

* 'git add --all ' will let you also record the removals.

Run 'git status' to check the paths you removed from your working tree.

Я думаю, что установка--all это довольно вменяемый по умолчанию, так как я могуreset если что-то было добавлено неожиданно. Как я могу сделать это поведение по умолчанию?

Ответы на вопрос(2)

Ваш ответ на вопрос