Reputation: 27385
How to look at all uncommited changes to a file in hg? If we use TortoiseHG it's clear, but what about command line?
Upvotes: 1
Views: 26
Reputation: 3005
You probably want some combination of
hg status -mad
to list all Modified, Added and Deleted files,
and hg diff <filename>
to show the changes in a particular file.
Upvotes: 1