Suppose I'm in branch 'abc-test'
git pull origin master
Does this merges master branch with my current Branch('abc-test') or do I need to run more commands?
git pull origin master
will pull changes from the origin remote, master branch and merge them to the local checked-out abc-test
branchgit commit -m"Your commit Message"
git push