v0.1.23
v0.1.23 - harbor history
Harbor remembers a number of most recently executed CLI commands. You can search/re-run the commands via the harbor history
command.
This is an addition to the native history in your shell, that'll persist longer and is specific to the Harbor CLI.
Use history.size
config option to adjust the number of commands stored in the history.
# Set current history size
harbor history size 50
History is stored in the .history
file in the Harbor workspace, you can also edit/access it manually.
# Using a built-in helper
harbor history ls | grep ollama
# Manually, using the file
cat $(harbor home)/.history | grep ollama
You can clear the history with the harbor history clear
command.
# Clear the history
harbor history clear
# Empty
harbor history
Full Changelog: v0.1.22...v0.1.23