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 addコマンド中にステージングされているファイルをgitにエコーさせるにはどうすればよいですか?
git add
このようなもの...
> git add app/ app/index.html added > _
使用する:
git add -v
(または--verbose、同じこと)。何らかの理由で、git rm常に-v(事実上、実際には-vオプションがありません) であり-q、静かにする必要がありますgit addが、決して冗長ではなく-v、うるさくする必要があります。(または、-n実際には追加されませんが、冗長です。)
--verbose
git rm
-v
-q
-n