Você pode usar a seta para cima ou digitar o início de um comando anterior para pesquisar seu histórico de comandos no DevTools, but if you don't recall the command and it's far away in your history, você pode usar este método para ver todo o histórico do seu console:

  1. Enquanto estava no DevTools, Undock into separate window (search for it with Ctrl+Shift+P)
  2. Ctrl+Shift+J to DevTool your DevTools (inceptioooooon)
  3. Go to the Application tab -> Local Storage -> devtools://devtools
  4. Double-click or Edit the value of consoleHistory, and copy it
  5. To unescape the backlashed newlines and quotes, paste it into a variable and print it to console, where a 'Copy' button will appear:
    history = ["Your console history here"]
    console.log( history.join( '\n\n------\n\n' ) )
  6. Or inject it into a new tab:
    var win = window.open(); 
    win.document.body.innerHTML = "<pre>"+ history +"</pre>";

Bonus tip: você pode Ctrl + Shift + P Limpar histórico do console.