How do I filter log by folder in SourceTree?

前端 未结 4 1167
隐瞒了意图╮
隐瞒了意图╮ 2021-02-07 00:47

In SourceTree, how do I limit the log to only show commits that affected files within a given folder?

I.e. the equivalent to: git log path/to/folder

相关标签:
4条回答
  • 2021-02-07 01:02

    This Answer is Outdated

    This answer is now outdated. It was written before the Windows version of SourceTree had this feature built-in. The current version of SourceTree for Windows (1.5.2.0) has this feature now, so @bozi's solution should now work for both the Windows and Mac versions of SourceTree.

    Original Answer

    Instead of using SourceTree, you can use

    gitk -- folderPath
    

    to view the history of just the folder. gitk takes many of the same options that git log does.

    Another option is to use another Git gui like TortoiseGit, which will let you select folders in Windows Explorer and right-click to get a context menu, from which you can select to view the log for that one particular folder.

    0 讨论(0)
  • 2021-02-07 01:02

    Actually there is no option for this at sourcetree. You can post this feature idea to the atlassian site.

    0 讨论(0)
  • 2021-02-07 01:23

    My first thought was, Log Selected feature is only for files.

    Then accidentally I hit Tree View - Voila!

    I am using Mac, not sure this is available on Windows.

    • Change Source Tree settings to TreeView
    • As explained by @bozi Click on Log Selected

    0 讨论(0)
  • 2021-02-07 01:25

    Click on the File Status segmented control in the top left corner.

    Screenshot 1

    Above the Files staged in the index area set the filters to Tree View and Show All. All of your files will appear in the Files in the working tree area.

    Screenshot 2

    Select one or more files and/or folders, right click and select Log Selected....

    Screenshot 3

    0 讨论(0)
提交回复
热议问题