I have branch named BDD-tests and have several commits on that branch. One of the other developers pushed their changes on remote repo (on github) which changed a lot of the UI.
Now, I need to bring in the changes in my local branch (BDD-tests) and see the changes on my local app.
So, I went to the terminal and ran git pull
, which is suppose to fetch the changes from the remote repo and merge it with my local branch?
I refreshed the local app, but I don't see any changes on the front end.
I went to the terminal and did 'git checkout master' and refreshed the web page (local app) and the UI changes from the other developer was there.
Am I missing something here?
I also, followed the following posts but still getting the same issue: http://blog.mikepearce.net/2010/05/18/the-difference-between-git-pull-git-fetch-and-git-clone-and-git-rebase/
git pull from master into the development branch
I could perhaps switch to my local master and do a pull which would resolve the issue but I don't want to work on the local master (because it's always a good practice to branch out)