If you need to see Bash history with timestamps, use this command.

<pre lang="bash">
HISTTIMEFORMAT="%d/%m/%y %T "

To make it permanent, add it to your .bashrc.

<pre lang="bash">
echo 'HISTTIMEFORMAT="%d/%m/%y %T "' >> ~/.bashrc
source ~/.bashrc

Timestamps accuracy is retroactively, meaning it will not be accurate for commands performed prior to the history time format being set.