ditoslav
ditoslav

Reputation: 4892

Is it possible to see exact time of commit in gitextensions?

I would like to have both relative time and exact date and time visible for each commit in gitextensions.

Is this possible? Is there an option for editing visible columns?

Upvotes: 11

Views: 3460

Answers (3)

undisclosed
undisclosed

Reputation: 1

Just open the Settings dialog, go to the Hotkeys panel, and assign a hot key to function ToggleShowRelativeDate, in the RevisionGrid section, like this:

Git Extensions Settings - Hotkeys

In the example I have chosen Ctrl+Shift+Q, which is available (key combinations already assigned will appear in red).
Now, every time you press the hot key the date will switch between relative and absolute.
Although this is not a real solution to the question, in that it will not show both relative and absolute dates at the same time, it allows switching between the two fast enough to provide what is needed.

Upvotes: 0

Tom Leys
Tom Leys

Reputation: 19029

For just the exact date (no relative date) you can turn off "Show relative date instead of full date."

  1. Go to Tools|Settings
  2. Choose Appearance on the left
  3. Un-tick Show relative date instead of full date

Screenshot of GitExtensions settings, showing Show relative date instead of full date.

Upvotes: 21

jbialobr
jbialobr

Reputation: 1538

It is not possible. You can add a feature request for that. https://github.com/gitextensions/gitextensions/issues/new

Upvotes: -1

Related Questions