Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドキュメント(およびこの質問への回答)に示されているように:
git -u
git -A
追加/削除ではなく、ファイルの変更のみを追加する 1 行の git コマンドはありますか?
すべての編集内容を簡単に追加したいのですが、このアクションでデフォルトでファイルを追加/削除したくありません (明示的に行います)。
次のようなことができます。
git add $(git diff-files --diff-filter=M --name-only)
資力:
使用することをお勧めします
git add -p
興味のある変更を選択できます。