In Laravel 6 application with git on bitbucket I have several branches and having current branchA I had to switch to branchB and make pull from the git and I run command
git pull origin feature/branchB
but seems I missed firstly to run command
git checkout feature/branchB
Now my app raise strange errors
Which is valid way to check current status of branchA with pulling from git and revert to prior state?
Thanks!