Explore your shell history like a time traveler.
This script shows commands you ran at this time last week, last month, or the same day last year.
- Works with
~/.zsh_history
or~/.bash_history
[user] | |
name = Your Name | |
email = your@email.com | |
[core] | |
editor = code --wait | |
autocrlf = input | |
[alias] | |
st = status |
#!/bin/bash | |
# This script helps clean and optimize your Git history interactively. | |
# USE WITH CAUTION ⚠️ - This rewrites commit history. | |
echo "💡 Make sure you have backups or pushed branches before proceeding." | |
read -p "How many commits back do you want to clean up? " commits | |
if [[ -z "$commits" ]]; then |