How to reload .bashrc settings without logging out and back in again?

bash, profile, reload, shell, terminal

Solution

You can enter the long form command:

source ~/.bashrc

or you can use the shorter version of the command:

. ~/.bashrc

Problem

If I make changes to `.bashrc`, how do I reload it without logging out and back in?

Original source