git add -Aコマンドで、新規ファイル、変更されたファイル、削除されたファイルを含むすべての変更を一括でステージングする方法を学びます。
# ファイルの作成、変更、削除を行うtouch file1.txtecho "content" > file2.txtrm README.mdmkdir docs# 状態を確認git status# すべての変更(新規、変更、削除)をステージングgit add # 最終状態を確認git status