After doing a "git fetch origin" to pull in a remote branch added my a colleague, I did "git checkout .
This output: Branch set up to track remote branch from origin. Switched to a new branch ""
I have a post-merge script to run SQL scripts merged into my local repository. HOWEVER, when I ran my git checkout , I pulled in some SQL files and my script did not run, meaninng no merge was done.
How does it get the remote branch onto the local branch if it isn't merging?
Thanks in advance!