I have a project in Visual Studio 2019 that I cloned from an empty DevOps project. It is using git. I have created a local branch in Visual Studio from master
and added a new solution. I have then committed the changes, synced with the server and pushed the commit. On DevOps I created a new pull request to merge my branch into master, then approved and completed the pull request.
When I checkout master in Visual Studio and pull, it updates to the latest commit. However, I do not see the Solution in the Solution Explorer (it is empty). I pull again and it says I'm up to date.
I have tried merging from remotes/origin/master
also to no success. I have tried fetching remotes/origin/master
no dice. I have tried deleting master
and recreating it using so that it tracks remotes/origin/master
with: $ git branch -d master
and $ git checkout -t remotes/origin/master
and still no joy.
Thank you for reading my query. What am I missing?