No idea if this is the best way to do it, but for me it worked to follow the instructions by mcarans on Stackoverflow about How to move files from one git repo to another (not a clone), preserving history
Tag Archives: history
Bash settings
A few settings to be put into the .bashrc.
Ignore duplicates in history, but do put in comands that start with spaces:
HISTCONTROL=ignoredups # (default: ignoreboth)
Keep a lot of history:
export HISTSIZE=10000 # default: 1000 export HISTFILESIZE=10000 # default: 1000
When the shell exits, append to the history file instead of overwriting it:
shopt -s histappend
Disable the annoying password thingy in KDE:
unset SSH_ASKPASS
Export your skype history to text files
With this handy script (not written by me):
https://gist.github.com/r3t/4466231