こちらのコマンドで保存件数を増やせます。これを .bash_profile や .bashrc に書いておけば OK です。
export HISTSIZE=1000000
export HISTFILESIZE=1000000
今の端末の中での履歴の最大件数
.bash_history に書き込まれる履歴の最大件数
export HISTCONTROL=ignoredups
危険な操作なので念のためバックアップを取ってから行う
cp ~/.bash_history ~/.bash_history.bak
cat ~/.bash_history |uniq >tmp
mv tmp ~/.bash_history