I want to work on two branches simultaneously from my local environment. I need to do that because on one branch, I'm running heavy tests which take lots of time and during this time I can't do anything. I wanted to create another branch for some other task and work on it while the tests are running.
One way to do that is by cloning the repo again (to a different location), create the second branch there, and work on it. I'm wondering if that's the best solution though.
Does anyone have an idea? Thanks ahead!