git add .
変更をコミットする前に、私は何年も入力してきました。私が理解していることから(以下のメッセージから)、現代の同等物git add --ignore-removal <pathspec>
はもう少し冗長です。git の今後のバージョン 2.0で古い動作に戻す方法、または少なくとも現在のバージョンでこのメッセージを無音にする方法はありますか?
$ 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 'log/sunspot-solr-development.log.lck' that are
removed from your working tree are ignored with this version of Git.
* 'git add --ignore-removal <pathspec>', which is the current default,
ignores paths you removed from your working tree.
* 'git add --all <pathspec>' will let you also record the removals.
Run 'git status' to check the paths you removed from your working tree.