Badmiral
Badmiral

Reputation: 1589

git diff name only A M and D meaning

I did

git diff --name-only commit1 commit2

and I get a list

A file1
M file2
D file3

What does the A, M, and D stand for? Thanks

Upvotes: 0

Views: 114

Answers (1)

mipadi
mipadi

Reputation: 410792

Added, modified, and deleted.

Upvotes: 2

Related Questions