Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Mercurial (tortoisehg), how do I view a file's history?

Tags:

In tortoisehg, how do I view a file's history? Much like as the repo explorer, but instead of viewing the whole repo, I would like to view only a specific file's history.

Thanks!

like image 872
radztech Avatar asked Sep 09 '11 23:09

radztech


People also ask

Is TortoiseHg open source?

It is free software released under the GNU General Public License. TortoiseHg can be used as a client to a git server.

What is HG command?

The hg command provides a command line interface to the Mercurial system.


1 Answers

You can view the changes on a file by the following command:

hg log -f file_path 

You can see more options by typing hg log --help

like image 151
Shraddha Avatar answered Sep 20 '22 06:09

Shraddha