git の送信時に変更がコミット用にステージングされない

git がいくつかのファイルを削除および変更した後、git add -A の後に git commit -m "最新のコードを送信" を使用してエラーを報告します。

On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:

ただし、git Push を使用するとオリジンマスターを送信できません。解決策は次のとおりです。

git add -A

git commit -am "提交最新代码"

git push origin master

おすすめ

転載: blog.csdn.net/XU441520/article/details/132049191