In various blogs explaining the terminal multiplexer tmux and Git repositories containing a configuration file tmux.conf I find the following two lines (possibly with a varying prefix key):
set -g prefix2 C-a
bind C-a send-prefix -2
But what I couldn't find an answer for is why the second line is needed. As to my understanding the first line already binds the given key as the secondary prefix. I also tried to configure tmux with only the first line present and it seems to work. So why should it be bound a second time to explicitly send the secondary prefix key again?