I suggest that you don't do this, initially. Instead, start a new emacs session and test whatever changes you made to see if they work correctly. The reason to do it this way is to avoid leaving you in a state where you have an inoperable .emacs file, which fails to load or fails to load cleanly. If you do all of your editing in the original session, and all of your testing in a new session, you'll always have something reliable to comment out offending code.
When you are finally happy with your changes, then go ahead and use one of the other answers to re-load. My personal preference is to eval
just the section you've added/changed, and to do that just highlight the region of added/changed code and call M-x eval-region
. Doing that minimizes the code that's evaluated, minimizing any unintentional side-effects, as luapyad points out.