2014-09-02 87 views

回答

3

你想與revsets一起工作!

hg log -r "adds(filename.ext)" 

從幫助說明:

補充說: 「(樣式)」:
變更是添加文件匹配模式。 像「glob:」這樣沒有明確類型的模式應該是相對於當前目錄並且匹配文件或目錄。

+0

我在http://stackoverflow.com/a/25632251/107158上選擇了這個答案,因爲我非常欣賞一般的有用性和優雅的風格。 – 2014-09-02 21:15:48

1

這應該工作:

hg log -r : -l 1 filepath 

hg log -r :打印以相反的順序歷史,-l 1開關限制顯示的第一個中的變化。

+0

我喜歡這個答案,因爲我不知道'-r:',但經過一些考慮和與隊友的簡短討論後,我終於選擇了http://stackoverflow.com/a/25631851/107158因爲我在http://stackoverflow.com/questions/25631408/how-can-i-query-mercurial-for-the-the-revision-which-introduced-a-given-file/25632251#comment40048581_25631851。 – 2014-09-02 21:20:34

相關問題