DevOps / GIT Interview Questions
What does git pull origin master do?
git pull fetches and as well as merge.
git pull origin master fetches commits from the master branch of the origin remote into the local origin/master branch and then it merges origin/master into the branch you currently have checked out.
More Related questions...