Reputation: 24764
with
hg diff
mercurial show me the modifications, separated by @@
.
I can get only one of them?
Upvotes: 3
Views: 181
Reputation: 276
On Ubuntu, try the hgview program. It has a pretty nice interface.
Upvotes: 1
Reputation: 73768
You can pipe the output of hg diff
into a program like filterdiff
to further refine the patch.
Upvotes: 1
Reputation: 6114
The modifications separated by @@
are named "patch hunk" or simply "hunk". You can use the record
extension (disabled by default).
Upvotes: 2
Reputation: 4747
If you are on Windows, I would recommend installing TortoiseHg and using
hgtk status
Upvotes: 2