I am working on a group project with some people and we have two active branches.
Up to now I have been working on the master branch until we came across some problems with the application. Someone made a different branch with different configurations (to try and address the problems on master).
I am tracking this branch now and have checked out.
However, when I try gradle build or test or cucumber I am getting the same errors I was getting on master. This should not be the case as the guy who made the branch is able to build without these errors.
I believe gradle is still trying to build from master rather than the branch I am on. Am I doing something obviously wrong?