crates.io Crates.io

git function history GUI

A GUI frontend for the git function history library.

Installation

cargo install git-function-history-gui

Note

Under Linux you may need to install the following packages:

On ubuntu you can install them with: sudo apt-get install -y libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev

Usage

When you run the program, you will see a window, like this: (the title bar/decorations vary by platform)

The app is split into three sections:

Command bar

Even though the command bar is the middle section, we will start with it because you cannot use the top section without first building a command in the command bar.

The leftmost part of the command bar is the command selector, it is a drop down menu that allows you to select the command you want to build.

The commands are:

Command bar - search

The first thing you'll see is a text box, this is where you enter the name of the function you want to search for.

The next thing you'll see is a drop down menu, this is the search file selector, it allows you to select what type of file you want to search in.

The options are:

If you select Relative or Absolute then you will see a text box appear, this is where you enter the filename.

After that there is another dropdown menu to filter the search (before it is run) to save time.

The options are:

Date Range: This option will filter the search to only the commits between the two dates specified in the text boxes.

If you select Commit Hash or Date then you will see a text box appear, this is where you enter the commit hash or date, with Date Range you will see two text boxes appear, these are where you enter the start and end dates.

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Command bar - filter

Once you have ran a command and gotten some output in the viewing pane, you can filter by switching the first drop down to filter.

The options vary by if you have already filtered by lets say a date, then you won't be able to filter by a date range or a commit hash.

All the options are:

Every option has a text box, except for None.

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Command bar - list

The list command is used to list commit hashes or dates for each commit in a git repository.

Once you select the list command, you will see a drop down menu, this is the list type selector, it allows you to select what type of list you want to build.

The options are:

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Viewing pane

The viewing pane is where the output of the command you have built in the command bar is displayed.

when you first open the app, the viewing pane will be or you filtered to the point where there is no output, so you will see a message saying Nothing to show Please select a command.

If its showing you the a function whole history in the repository, as opposed to just a single commit, then the top of the viewing pane will have a left and right arrow )a button will be disabled if there is no more history to show in that direction ), these are used to navigate between commits along with the commit hash and date.

Below that is the is where you can see all the all instances of the function in the commit along with tall left and right arrows (each button will only be shown if you can go back and forward through the files in the commit), these are used to navigate between the files that contain the function.

If you filtered to a single commit, then you will see the commit hash and date at the top of the viewing pane.

Below that is the is where you can see all the all instances of the function in the commit along with tall left and right arrows (each button will only be shown if you can go back and forward through the files in the commit), these are used to navigate between the files that contain the function.

If you list the commit hashes or dates, then you will see a list of all the commit hashes or dates in the repository.

Status bar

The status bar is where you can see the status of the app, it will tell you if the app is loading or if there was an error or everything is fine.

On the right hand side there is as a button to change the theme.

Known issues

Future plans

Note: most of these features need to be added to the underlying library first.